Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Is it possible to add values manually to a measure?
For instance:
Bar chart
Dimension: Period
Measures - 2:
1) Sum(payment_value)
2) 13041112
Typing a single value works just fine, but I need to add a small list of values, as: 13041112, 15002137, and so on. Is there a way to add more than one value straight to the measure field, without creating a table?
I tried creating separate table with the information, but it did not work (I'm having a hard time associating the table by 2 different fields at once). Actually, I studied very little that part of associations in Qlik Sense, but I do understand thats the classy solution.
Hugs,
Audrey
Can you share what you want to see exactly with example
I want the red bar to be the following values: 13041112, 15002137, 18005823, 18100012.
My desire is to input the values straight in the expression field. Is that possible?
Tks,
Have a look at the ValueList() function
Would something like this help?
[AdditionalData]:
LOAD * INLINE [
Period, AdditionalValue
2016, 13041112
2017, 15002137
];