Forum Discussion
BartVlek
5 years agoHelper II
Help with filtering
Hi, I have the following issue. I have a colum with turnover, and I have column with webreferences (meaning internetsales). No I would like to know the formula to calculate the internetsales. So if...
Anonymous
5 years agoNot applicable
Hi BartVlek
SalesLoc = IF('table'[web reference] in {blank(),""}, "Internet","Shop")
BartVlek
5 years agoHelper II
Thank you! What does it loojk like if I only need internetsales?
- BartVlek5 years agoHelper II
And sorry about the typos ...
- manikumar345 years agoSolution Sage
BartVlek ,
Not clear with the above statement.
IF(ISBLANK(Table[Webreference]),0,SUM(Table[Turnover]))
Regards,
Manikumar
- Anonymous5 years agoNot applicable
Hi BartVlek
In that case use
SalesLoc = IF('table'[web reference] in {blank(),""}, "Internet",blank())Also, with the question putting a desirable output is a good way for others to understand and help.