Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Count of data in a particular quarter

Hi,

I need to calculate the count of glucose values with dates in the Q1, then Q2,Q3,Q4.

The columns in the table to be used are:

Glucose     Date

I think I might need something like.

count(if([Date]>=Jan and [Date]<=April,Glucose))

Please advise!

Thanks in Advance!

1 Solution

Accepted Solutions
v_iyyappan
Specialist
Specialist

Hi,

     Use like this

          count(if(Month([Date])>=1and Month([Date])<=4,Glucose))

Regards,

Iyyappan

View solution in original post

1 Reply
v_iyyappan
Specialist
Specialist

Hi,

     Use like this

          count(if(Month([Date])>=1and Month([Date])<=4,Glucose))

Regards,

Iyyappan