Forum Discussion
Anonymous
7 years agoNot applicable
Want to develop a logic inside Power BI Desktop
Hi All, Trying to achieve same condition in Power BI,Please Help me: if(Calendar_Week_Relative = 0, sum({$<$(vSetChart), Stocking_Order_Type={'Outbound'}, Calendar_Week_Relative = {'<=0'}>} To...
- 7 years ago
Anonymous,
Check measure below and take a look at this article.
Measure 2 = VAR w = SELECTEDVALUE ( Table1[week_relative] ) RETURN IF ( NOT ( ISBLANK ( w ) ) && w = 0, CALCULATE ( [Measure], Table1[week_relative] <= 0 ), [Measure] )
Anonymous
7 years agoNot applicable
Please ignore $(vSetChart) and Total_$(vMeasure), just want to impement If logic to Date dimenssion.