Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I am so new to this, and need your help.
This is my table
Cars | Country | Models |
---|---|---|
BMW | GER | 12 |
TOYOTA | JPN | 20 |
HONDA | JPN | 18 |
NISSAN | JPN | 15 |
I need to display information for just BMW and Toyota. How do I do that ?
Cars | Models | |
---|---|---|
BMW | 12 | |
TOYOTA | 20 |
I tried =if(match(Cars,'BMW', 'TOYOTA', ), Cars,'OTHER')
and added Expression sum(Models)
The problem with that one is that i don't want to display any other values but with my calculated dimension I get OTHER row. I don't want to show anything else.
Thanks a lot
try this
if(match(Cars,'BMW', 'TOYOTA' ), Cars)
I would recommend using set analysis:
=Sum({<Cars = {'BMW', 'TOYOTA'}>} Models)
Try removing an extra comma, like:
if(match(Cars,'BMW', 'TOYOTA'), Cars,'OTHER')
try this
if(match(crs,'bmw','toyota'),cars)
It looks like your calculated dimension has a comma after 'TOYOTA'. Can you please erase that and try?
This did not work and produced the following error:
//Error in calculated dimension
This produces the following table. Instead of other, it creates "-" sign. I need to get rid of -/33 result.
Cars | Models | |
---|---|---|
BMW | 12 | |
TOYOTA | 20 | |
- | 33 |
I need results without "OTHER"
This produces the following table. Instead of other, it creates "-" sign. I need to get rid of -/33 result.
Cars | Models | |
---|---|---|
BMW | 12 | |
TOYOTA | 20 | |
- | 33 |