Excel DAX Pivot table question

shophoney

Active Member
Joined
Jun 16, 2014
Messages
281
Hi,

I have many tables and I would like to find out the best way to count the number of units sold that meet a criteria.

In tblInvMaster I have a fields called PROMO CODE. I want to sum up the number of units from tblSALE that have a PROMO CODE.

So I can use the related function in DAX:
=IF(RELATED(tblInvMaster[PROMO PRICE])>0,'SALES TABLE'[UNITS SOLD],0)
and then total the column. But I don't think it efficient as it would have to look through 1m rows.

I was trying to write this as a measure:
PROMO UNITS SOLD:=SUMX (
ADDCOLUMNS (
SUMMARIZE (
'SALES TABLE',
"PROMO UNITS",'tblInvMaster'[PROMO PRICE],
"NetUnitsSold", SUM ( 'SALES TABLE'[UNITS SOLD] )
),
"Promo Units Sold", IF ( [PROMO UNITS] > 0, [NetUnitsSold], 0 ) )
),
[Promo Units Sold]
)

But it didn't work.

Thoughts?
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.

Forum statistics

Threads
1,214,822
Messages
6,121,770
Members
449,049
Latest member
greyangel23

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top