Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am new to Qlik Sense and have trouble creating calculated fields.
My data only contains two columns, and I want to create a third column for future sales by Amount*Probabilty:
Amount | Stage |
4316 | Explore |
1522 | Begin |
3081 | Middle |
1566 | Middle |
4600 | Develop |
1171 | Product |
5123 | Sell |
Conversion probability
Explore = 0.1
Begin=0.2
Middle=0.3
Develop=0.4
Product=0.8
Sell=0.1
For example, the future sales for the first row would be 4316*0.1=431.6
Can anyone help me with this problem? Thanks in advance.
Hi
Try this
Create a Measure
Sum(Amount * pick(match(Stage, 'Explore ', 'Begin', 'Middle','Develop','Product','Sell') , 0.1,0.2,0.3,0.4,0.8,0.1) )
But the best way, you can create a new column in load script
Load * ,pick(match(Stage, 'Explore ', 'Begin', 'Middle','Develop','Product','Sell'), 0.1,0.2,0.3,0.4,0.8,0.1) as Probability from table_name;
then create a measure like Sum(Amount*Probability)
regards
An Pham