Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hi All,
I need your help to solve the below query, please help me to solve this issue.
Condition: A>=1/Month and B>=6 / Quarter and C>=1/Quarter then the result should be pass else fail.
Jan | Feb | Mar | Result | ||||||
A | B | C | A | B | C | A | B | C | |
1 | 4 | 1 | 1 | 2 | 1 | 3 | Pass | ||
1 | 6 | 2 | 1 | 5 | Fail | ||||
1 | 1 | 1 | 2 | 1 | 3 | 1 | Pass | ||
1 | 6 | 2 | 4 | 1 | 5 | Fail |
Thank you in advance
Solved! Go to Solution.
Hi @Anonymous ,
I created a sample pbix file(see attachment) for you, please check whether that is what you want. You can create a calculated column as below:
Result =
VAR _abymonth =
CALCULATE (
SUM ( 'Table'[Value] ),
FILTER (
ALL ( 'Table' ),
'Table'[Type] = EARLIER ( 'Table'[Type] )
&& 'Table'[Item] = "A"
&& MONTH ( 'Table'[Date] ) = EARLIER ( 'Table'[Date].[MonthNo] )
)
)
VAR _bbyquarter =
CALCULATE (
SUM ( 'Table'[Value] ),
FILTER (
ALL ( 'Table' ),
'Table'[Type] = EARLIER ( 'Table'[Type] )
&& 'Table'[Item] = "B"
&& QUARTER ( 'Table'[Date] ) = EARLIER ( 'Table'[Date].[QuarterNo] )
)
)
VAR _cbyquarter =
CALCULATE (
SUM ( 'Table'[Value] ),
FILTER (
ALL ( 'Table' ),
'Table'[Type] = EARLIER ( 'Table'[Type] )
&& 'Table'[Item] = "C"
&& QUARTER ( 'Table'[Date] ) = EARLIER ( 'Table'[Date].[QuarterNo] )
)
)
RETURN
IF ( _abymonth >= 1 && _bbyquarter >= 6 && _cbyquarter >= 1, "Pass", "Fail" )
Best Regards
Hi @Anonymous ,
I created a sample pbix file(see attachment) for you, please check whether that is what you want. You can create a calculated column as below:
Result =
VAR _abymonth =
CALCULATE (
SUM ( 'Table'[Value] ),
FILTER (
ALL ( 'Table' ),
'Table'[Type] = EARLIER ( 'Table'[Type] )
&& 'Table'[Item] = "A"
&& MONTH ( 'Table'[Date] ) = EARLIER ( 'Table'[Date].[MonthNo] )
)
)
VAR _bbyquarter =
CALCULATE (
SUM ( 'Table'[Value] ),
FILTER (
ALL ( 'Table' ),
'Table'[Type] = EARLIER ( 'Table'[Type] )
&& 'Table'[Item] = "B"
&& QUARTER ( 'Table'[Date] ) = EARLIER ( 'Table'[Date].[QuarterNo] )
)
)
VAR _cbyquarter =
CALCULATE (
SUM ( 'Table'[Value] ),
FILTER (
ALL ( 'Table' ),
'Table'[Type] = EARLIER ( 'Table'[Type] )
&& 'Table'[Item] = "C"
&& QUARTER ( 'Table'[Date] ) = EARLIER ( 'Table'[Date].[QuarterNo] )
)
)
RETURN
IF ( _abymonth >= 1 && _bbyquarter >= 6 && _cbyquarter >= 1, "Pass", "Fail" )
Best Regards
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.