March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi team, I am trying to implement a new measure which outputs the quarter end date if a measure is >25%, else blank So far I have coded in DAX: But having no success so far...
Solved! Go to Solution.
Hi @andyly85 ,
You just need do a simple modification, change 25% to 0.25, please try below dax formula:
>25% = IF([Column1]>0.25,"December22")
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @andyly85 ,
You just need do a simple modification, change 25% to 0.25, please try below dax formula:
>25% = IF([Column1]>0.25,"December22")
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This works now, thanks!
@andyly85 , Assume you need qtr for today of selected date
Qtr =
var _today = if(isfiltered('Date'),MAX( 'Date'[Date]) , today())
var _max = eomonth(_today, if( mod(Month(_today),3) =0,0,3-mod(Month(_today),3)))
return
IF('Rank'[Largest Client %] > 25%, _max )
Hi! This has come up as an error..
The following syntax error occurred during parsing: Invalid token, Line 7, Offset 33, %.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |