Forum Discussion
ronaldbalza2023
4 years agoContinued Contributor
Find Current Quarter
Hi everyone, I have a date table and I wanted to know how to find the current quarter based on my "quarter of the year" column? I wanted to create a calculated column that can find the current quarte...
- Anonymous4 years ago
Hi ronaldbalza2023 ,
If you want to filter all data whose quarter is the same as current quarter(now=4), I'd suggest you create a measure:
Measure=IF(MAX('TABLE'[Quarter]) = QUARTER(TODAY()),1,0)And then apply it to filter pane, as shown below:
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
4 years agoNot applicable
Hi ronaldbalza2023 ,
If you want to filter all data whose quarter is the same as current quarter(now=4), I'd suggest you create a measure:
Measure=IF(MAX('TABLE'[Quarter]) = QUARTER(TODAY()),1,0)
And then apply it to filter pane, as shown below:
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.