The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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
User | Count |
---|---|
25 | |
10 | |
8 | |
7 | |
6 |
User | Count |
---|---|
32 | |
12 | |
10 | |
10 | |
9 |