User customized Price Banding

I have shelf prices and placements in the dataset. Is it possible to create a price banding such that it offers multiple options like $300-$499, $500-$699, $700-$899 for the user? My expectation is to have a bar chart as shown below, with the x-axis containing price bands that can be changed through the user interface according to their convenience. The interface should provide a dashboard for them to set multiple price bands. Is there any workaround solution for this?

Screenshot (465)

Hi @Viji
I guess you have a price field?

Create a New calculated field.

Ifelse(price<=300,“300 & below", price<500,"300-499".....

BR

1 Like

When we share dashboard to the client, whether they could be able to set price bands on their own? We’re creating calculated field in the analysis side but I want client to set their own price bands on their own. Is it possible to do?

Yes you can do by using parameter. But you will need a few depending on number of bands and required flexibility.

Hi @Viji
any updates on your side?
BR