Does Dundas have any “what-if scenario” functionality? I can’t seem to find anything on this in the documentation. Basically, I want the user to be able to enter in a number value and then have this value be used in a table. This number can be any decimal value so a fixed list doesn’t really work.
So, simple example of the dashboard is a table visualization where EndResult = Sales x Multiplier
Date Sales Mult EndResult
Jan 100 5 500
Feb 20 5 100
Mar 30 5 150
Apr 50 5 250
The table will default with an original Mult value (always the same value) and then I want a textbox where if the user enters in a number and clicks a button, the table will change calculations based on that input value.
User input: 2
table changes to:
Date Sales Mult EndResult
Jan 100 2 200
Feb 20 2 40
Mar 30 2 60
Apr 50 2 100
I don’t need to actually see the Mult column. The input value can be any decimal.
Anyone done something similar? Thanks.