Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Everyone,
I have a requirement to build out a chart, with a group of Customers. This groups isn't definable by data, but is more of a "I want these customers on this list I'm giving you to appear in a Chart". My question is, how do I make that happen when there is no Set Analysis that I can run on as the list of Customers don't really have a grouping characteristic.
I've attached a picture of what I am trying to achieve.
Any help on this hard coding issue is greatly appreciated.
How will these customers be defined? Do you want to input them manually in a grid in the application or could they just be listed in a spreadsheet that you read during reload?
How will these customers be defined? Do you want to input them manually in a grid in the application or could they just be listed in a spreadsheet that you read during reload?
I'll be given a list of names. I can input them manually just to meet the requirement for the near future, but I assume that in the distant future, I will want them in a spreadsheet with their unique business keys.
You can connect it via the data model and key-fields and also use variables and $-sign expansion to achieve it.
Explore the possibility of using ValueList() function with either INPUTFIELD or InputBox Object.
Sunny
I'll hash together a quick demo for you...
Actually the quickest way of doing it is to use a straight-forward search in a list-box containing customer names or customer ID's. You can in the search in the title of the list-box write:
Maybe I ill-posed the question. The chart is going to be made for a report, so we need to have the chose customers stuffed into the chart well before the user goes into it.
You can have a simple input box with one variable named v1 and then use this expression in your chart to list only those customers you put into the list-box:
Sum( { <Customer={$(v1)}>} Amount)
the v1 should contain:
'Customer 1','Customer 45','ACME INC'