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.
Dear community,
I am facing a challenge to group sales from a fairly simple table.
The table have total sales generated on both "OrderType" and "SalesChannel" which sums up to the same. However I would like to change the setup with the following needs, preferably through dax (running direct query):
The decired result you can see on the right hand side.
Thanks in advance.
Hi Eason,
Thanks a lot for the help. It all make sense, except the "Online Sales" line as I cant get it to subtract the [Providers Sales]. Do I need a RemoveFilter to calculate the [Providers Sales] or how do I get it to link with the "Online Sales" row?
Thanks in advance.
Hi, @Molin
You may need create another measure like:
New Sales =
SWITCH (
MAX ( 'Table'[Provider] ),
"Dining-In Sales", BLANK (),
"Pick-Up Sale", 0,
"Online Sales", [Online Sales] - [Providers Sales],
[Sales]
)
Best Regards,
Community Support Team _ Eason
User | Count |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
35 | |
14 | |
12 | |
9 | |
7 |