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 have the fact table "fct_bookings" that looks like this:
In my dimension table "dim_distributor" I would like to create two calculated columns:
Net USD - which will result in the sum of all Net USD values from fact table for currency that has the highest share (based on Net USD value) for that particular customer
Currency - currency code with the highest share (based on Net USD value)
Result would look like this:
Can you help me with DAX for columns "Net USD" and "Currency"?
1 Net USD =
VAR maxusd = CALCULATE(MAX('fct_bookings'[Net USD]),ALLEXCEPT('fct_bookings'[BT Customer No]))
RETURN
maxusd
2 ) Currency =
VAR maxcurrency = CALCULATE(MAX('fct_bookings'[Trx Currency Code]),[Net USD]))
RETURN
maxcurrency
@FreemanZ , yes - one to many relationship from dim_distributor to fct_bookings by the field BT Customer No
hi @PshemekFLK
try to create two calculated columns like:
Currency =
MAXX(
TOPN(
1,
RELATEDTABLE(fct_bookings),
CALCULATE(SUM(fct_bookings[NetUSD]))
),
fct_bookings[Currency]
)
NetUsD =
SUMX(
TOPN(
1,
RELATEDTABLE(fct_bookings),
CALCULATE(SUM(fct_bookings[NetUSD]))
),
fct_bookings[NetUSD]
)
it worked like:
@FreemanZ This works great! Many thanks! One additional question: what if I add a grouping of customers to my dimensions table like this:
What would the DAX look like for "Group Currency"?
Hi @FreemanZ ,
I mean if one customer ordered 399 in GBP and 300 in EUR then result should show 399 in GBP as it is higher than EUR, I just edited the second table with the correct desired result. Apologies for confusion.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
15 | |
10 | |
9 | |
8 | |
6 |
User | Count |
---|---|
14 | |
12 | |
12 | |
11 | |
10 |