Forum Discussion
Subset Funnel
- Anonymous9 years ago
Hi FrederikHJ,
Based on test, I guess your records status may like below:
Result:
If as I said, you can use measures to calculate the current value, then drag them to funnel visual.
Formulas:
isSeen = COUNTROWS(FILTER(ALL(Sheet1),ISERROR(SEARCH("Seen",Sheet1[Status]))=FALSE()))
isBid = COUNTROWS(FILTER(ALL(Sheet1),ISERROR(SEARCH("Bid",Sheet1[Status]))=FALSE()))
isWon = COUNTROWS(FILTER(ALL(Sheet1),ISERROR(SEARCH("Won",Sheet1[Status]))=FALSE()))Funnel visual:
If above is not help, can you provide a sample to reproduce your issue?
Regards,
Xiaoxin Sheng
Hi FrederikHJ,
Based on test, I guess your records status may like below:
Result:
If as I said, you can use measures to calculate the current value, then drag them to funnel visual.
Formulas:
isSeen = COUNTROWS(FILTER(ALL(Sheet1),ISERROR(SEARCH("Seen",Sheet1[Status]))=FALSE()))
isBid = COUNTROWS(FILTER(ALL(Sheet1),ISERROR(SEARCH("Bid",Sheet1[Status]))=FALSE()))
isWon = COUNTROWS(FILTER(ALL(Sheet1),ISERROR(SEARCH("Won",Sheet1[Status]))=FALSE()))
Funnel visual:
If above is not help, can you provide a sample to reproduce your issue?
Regards,
Xiaoxin Sheng
That is perfect!
Many thanks :manhappy: