Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I´ve created this calculation group, works fine:
TEST =
IF (
ISFILTERED ( Currency[CurrencyTo] ),
VAR ForexRate =
CALCULATE (
FIRSTNONBLANK ( CreationForex[Rate], 1 ),
FILTER (
CreationForex,
CreationForex[Currency] = SELECTEDVALUE ( Bookings[SaleCurrency] )
&& CreationForex[CurrencyTo] = SELECTEDVALUE ( CreationForex[CurrencyTo] )
&& CreationForex[CreationDate] = SELECTEDVALUE ( Bookings[CreationDate] )
)
)
VAR Price =
SELECTEDMEASURE ()
VAR Result =
DIVIDE ( Price, ForexRate, 0 )
RETURN
Result,
SELECTEDMEASURE ()
)
But I have the known "issue" of 0 in totals, I´ve tried many options unsuccessfully, any idea how can I do it?
Thanks in advance for your time in reading.
Solved! Go to Solution.
@Anonymous , Based on row/column/group by used in measure try measure like
test new = sumx(Values(Table[Column]),[TEST])
Also refer: https://www.youtube.com/watch?v=ufHOOLdi_jk
@Anonymous , Based on row/column/group by used in measure try measure like
test new = sumx(Values(Table[Column]),[TEST])
Also refer: https://www.youtube.com/watch?v=ufHOOLdi_jk
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
25 | |
10 | |
7 | |
6 | |
6 |
User | Count |
---|---|
30 | |
11 | |
11 | |
10 | |
6 |