Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
User | Count |
---|---|
4 | |
3 | |
3 | |
2 | |
2 |