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,
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.
@JuanviWebbeds , 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
@JuanviWebbeds , 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
User | Count |
---|---|
19 | |
12 | |
10 | |
10 | |
6 |
User | Count |
---|---|
22 | |
20 | |
20 | |
14 | |
10 |