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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi guys,
Based on this picture, If I selected the Brand1 will apply to this formula, but I want the first I select is going to the first formula, secondly select will go to the second formula. How should I do? Is that possible to do this? Actually, this formula is not the actual formula this is the just simple formula I just want to ask how to fill only. How can help me? Is that clear my question?
Many = 1) CALCULATE(SUM(Data[Price]),FILTER(Data,Data[Brand]=VALUEs(Brand[Brand1]))) + 2) CALCULATE(SUM(Data[Price]),FILTER(Data,Data[Brand]=VALUEs(Brand[Brand1])))
Solved! Go to Solution.
Hi AlbisLoke,
PBI can’t recognize which item is the first selected item in a slicer. As a workaround, if you want to sum up Data[Price] only based on rows in filter, you can simply use DAX formula:
Many = CALCULATE(SUM(Data[Price]), FILTER(Data, Data[Brand] = “AFFLIGEM”)) + CALCULATE(SUM(Data[Price]), FILTER(Data, Data[Brand] = “ANCHOR SD”))
if you want to sum up Data[Price] based on all of the selected item in slicer. you can use DAX formula below:
Many = IF(ISFILTERED(Brand[Brand1]), CALCULATE(SUM(Data[Price]), ALLSELECTED(Brand[Brand1])), BLANK())
PBIX file here:
https://www.dropbox.com/s/ntc2fr33rs8i2lt/For%20AlbisLoke.pbix?dl=0
Regards,
Jimmy Tao
Hi AlbisLoke,
PBI can’t recognize which item is the first selected item in a slicer. As a workaround, if you want to sum up Data[Price] only based on rows in filter, you can simply use DAX formula:
Many = CALCULATE(SUM(Data[Price]), FILTER(Data, Data[Brand] = “AFFLIGEM”)) + CALCULATE(SUM(Data[Price]), FILTER(Data, Data[Brand] = “ANCHOR SD”))
if you want to sum up Data[Price] based on all of the selected item in slicer. you can use DAX formula below:
Many = IF(ISFILTERED(Brand[Brand1]), CALCULATE(SUM(Data[Price]), ALLSELECTED(Brand[Brand1])), BLANK())
PBIX file here:
https://www.dropbox.com/s/ntc2fr33rs8i2lt/For%20AlbisLoke.pbix?dl=0
Regards,
Jimmy Tao
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.