Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hello All,
Looking for some DAX help in creating a measure for share % of total sales year to date based on fields I have in a parameter table and am using as a slicer in my visual.
First measure I created was to calculate my total POS $ YTD for current week and year based on our business week planning calendar.
Example of how my field parameter slicer is setup:
Kind Regards,
Brandon B
Solved! Go to Solution.
% =
Divide(
[POS $ YTD],
Calculate(
[POS $ YTD],
Allselected()
)
)
% =
Divide(
[POS $ YTD],
Calculate(
[POS $ YTD],
Allselected()
)
)
Deku!!!! Thank-you so much for your help on this. Worked perfectly for what I needed to show in the visual and works perfect based on my parameter slicer switch. Can't thank-you enough.
User | Count |
---|---|
10 | |
8 | |
5 | |
5 | |
4 |