Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
Hi Power BI Community,
I have a simple question regarding a measure.
In a data set, I have price and date.
What I would like to do is to convert the price to a different currency
and if the dates is in S1 (from Jan to Jun), use one rate and if the date is in S2 (July to Dec)
use another rate.
Any recommendation?
I attached teh dummy data above.
Appreciate your support.
Many thanks,
H
Solved! Go to Solution.
Calculated Price = IF(MONTH('Dummy Data'[Date]) <= 6, 'Dummy Data'[Price] * 10, 'Dummy Data'[Price] * 20)
Is that what you're expecting?
Calculated Price = IF(MONTH('Dummy Data'[Date]) <= 6, 'Dummy Data'[Price] * 10, 'Dummy Data'[Price] * 20)
Is that what you're expecting?
| User | Count |
|---|---|
| 23 | |
| 21 | |
| 20 | |
| 17 | |
| 11 |
| User | Count |
|---|---|
| 55 | |
| 53 | |
| 41 | |
| 36 | |
| 32 |