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.
Hello,
I have a calculated column (Net Sold). How do I create a slicer based on the Net Sold column to filter my product table? Thanks.
I would like to add a slicer based on the range of the Net Sold values so that I can add the "Good", "Bad" slicer.
Solved! Go to Solution.
Hi,
You add a new Column with a Switch function. In your case it should be something like:
G/B = SWITCH(
TRUE(),
Sheet1[Net Sold]>10,"Good",
Sheet1[Net Sold]<10,"Bad")
Then, on the Report page, you add the G/B as a Slicer.
Hi,
You add a new Column with a Switch function. In your case it should be something like:
G/B = SWITCH(
TRUE(),
Sheet1[Net Sold]>10,"Good",
Sheet1[Net Sold]<10,"Bad")
Then, on the Report page, you add the G/B as a Slicer.