Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello
I have a Measure like:
Measure=MAX([Value])
For the data:
Product,Value,Date
A, 1, Date1
B, 2, Date1
A, 3, Date1
I want for every date, when Product=A to return MAX([Value]) and when Product=B to return MAX(([Value])/100
However, when I try to create a Measure like this and use IF, it does not offer me to use a Column but only other Measures. Any idea?
Thanks!
Solved! Go to Solution.
@Anonymous
Try the following formula. Also attached a workspace.
Column = If(Sheet1[Product] = "A",CALCULATE (
MAX ( Sheet1[Value]),
ALLEXCEPT ( Sheet1, Sheet1[Date] )
),
CALCULATE (
MAX ( Sheet1[Value]),
ALLEXCEPT ( Sheet1, Sheet1[Date] )
) /100
)
Hi @Anonymous ,
Could you tell me if your problem has been solved by @themistoklis 's suggestion? If it is, kindly Accept it as the solution to make this thread closed. More people will benefit from it. Or you are still confused about it, please show me your expected output.
Best Regards,
Eyelyn Qin
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 60 | |
| 45 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 109 | |
| 102 | |
| 39 | |
| 29 | |
| 29 |