I have created a google sheets. There are multiple sheets (Tabs) inside single google sheet.
I have one sheet called Dashboard
There are other sheets like kkweb
, virtual
. Currently there are 2 other sheets except dashboard. All the 2 sheets has same columns & structure, Even new sheets will have same columns & structure.
I want to perform some calculations on dashboard
sheet.
- Count Total Tasks
=COUNT(kkweb!B5:B,virtual!B5:B)
- Count Total "New Requests"
=(COUNTIF(kkweb!D5:D,"New Requests")) + (COUNTIF(virtual!D5:D,"New Requests"))
Note: My above formulas are working perfectly, But I'm going to have like 20+ sheets instead of 2. So my count formula will be like
=COUNT(kkweb!B5:B,virtual!B5:B,Sheet3!B5:B,Sheet4!B5:B,Sheet5!B5:B,Sheet6!B5:B,Sheet7!B5:B)
etc
It will be very long for all of my formulas, every time a new sheet comes.
Is there any easy way to do calculations in google sheets?
We maybe can create extra sheet with name config and add sheet names there & perform an easy formula to do above calulations
Note: Each sheet will have a different name, not sheet1, sheet2, sheet3.
Secondly, How can i calculate value based on other column from all sheets.
For example: =(COUNTIF(kkweb!D5:D,"New Requests"))
This formulae is counting where value is New Requests
from D5:D in kkweb sheet. I have another column C5:C which contains names "John", "Katrina" etc
So basically I want to check how many count of New Requests
are for "John"