Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi All
I have the following situation to resolve in powerBi Desktop
There is a sales record for 4 different weeks, week 1 to week 4.
I want to create a measure that will check customers whose purchase has drop for four consecutive weeks
This is what I have in mind
if week 1<week 2<week 3<week 4, "Consecutive Drop", "Normal"
How can I go about this.
Customer Name | Week 1 | Week 2 | Week 3 | Week 4 | Drop |
0001 | 23 | 34 | 12 | 32 | Normal |
0002 | 23 | 21 | 18 | 12 | Consecutive Drop |
0003 | 48 | 32 | 21 | 19 | Cosecutive Drop |
0004 | 98 | 72 | 12 | 3 | Consecutive Drop |
0005 | 19 | 43 | 78 | 101 | Normal |
Solved! Go to Solution.
Hi @alexumagba
Try this measure:
Drop Measure =
VAR _W1 =
MAX ( 'Table'[Week 1] )
VAR _W2 =
MAX ( 'Table'[Week 2] )
VAR _W3 =
MAX ( 'Table'[Week 3] )
VAR _W4 =
MAX ( 'Table'[Week 4] )
RETURN
IF ( _W1 > _W2 && _W2 > _W3 && _W3 > _W4, "Consecutive Drop", "Normal" )
Output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Hi @alexumagba
Try this measure:
Drop Measure =
VAR _W1 =
MAX ( 'Table'[Week 1] )
VAR _W2 =
MAX ( 'Table'[Week 2] )
VAR _W3 =
MAX ( 'Table'[Week 3] )
VAR _W4 =
MAX ( 'Table'[Week 4] )
RETURN
IF ( _W1 > _W2 && _W2 > _W3 && _W3 > _W4, "Consecutive Drop", "Normal" )
Output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
76 | |
63 | |
51 | |
48 |
User | Count |
---|---|
204 | |
86 | |
64 | |
59 | |
56 |