The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
HI,
I create a measure to check if the date is between 2 dates.
Measure | Year | Column A |
0 | 2021 | A |
Measure | Year | Month | Column A |
1 | 2021 | 01 | A |
1 | 2021 | 02 | A |
0 | 2021 | 03 | A |
How to fix the problem and make the result to 1 for 2021 ?
Thank
Solved! Go to Solution.
Hi, @Datavizuserpbi
You can try the following methods.
Measure:
Result =
Var _count1=COUNTX(FILTER(ALL('Table'),[Year]=SELECTEDVALUE('Table'[Year])&&[Measure]=1&&[Month]<=3),[Measure])
Return
IF(_count1=3,0,1)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Datavizuserpbi
You can try the following methods.
Measure:
Result =
Var _count1=COUNTX(FILTER(ALL('Table'),[Year]=SELECTEDVALUE('Table'[Year])&&[Measure]=1&&[Month]<=3),[Measure])
Return
IF(_count1=3,0,1)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Use REMOVEFILTERS against the Month column and return the MAX value.
Mayebe I don't understand but I can't use Max with a measure
You can when you iterate through it. Via MAXX for example.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
109 | |
80 | |
71 | |
51 | |
50 |
User | Count |
---|---|
123 | |
119 | |
76 | |
64 | |
60 |