The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi!
I have a table similar to the table below. I want to write a DAX expression that would do the following job - If the Time stamp is wk 22, then divide the sum of amount by 3 else keep the sum of amount as is.
Table 1:
So the result would be -
Wk 21- $50
Wk 22- $25
current - $90
How do I achieve this? Thank you!
Solved! Go to Solution.
So, like this?
Measure =
VAR __timestamp = MAX('Table'[Timestamp])
RETURN
IF(__timestamp = "wk 22",SUM([Amount])/3,SUM([Amount]))
So, like this?
Measure =
VAR __timestamp = MAX('Table'[Timestamp])
RETURN
IF(__timestamp = "wk 22",SUM([Amount])/3,SUM([Amount]))
I got it to work. Thank you for your help!
Thanks for your reply. This is the error message I am getting -
Also, there are numerous time stamps in my data and it's not the maximum week for the timestamp where I need to divide by 3, so i don't think I should be using the max function?
User | Count |
---|---|
27 | |
12 | |
8 | |
8 | |
5 |
User | Count |
---|---|
31 | |
15 | |
12 | |
7 | |
6 |