- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

multiples statements in a calculated column.
Hey guys, I have the calculated column below, which gives me two options "High Tier" and "Low Tier, but I also need Unknown, which means, these high and low tiers needs to exclude the BrandType = Unknown, and the final outcome should give me: "High Tier" and "Low Tier and "Unknown". What would be logic here, please?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Please create calculated column not measure
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Tier Type = //Try this one might help you
IF(
imei_dashboard[BrandType] = "Unknown",
"Unknown",
IF(
imei_dashboard[high_tier_ind] = 1,
"High Tier",
IF(
imei_dashboard[high_tier_ind] = 0,
"Low Tier",
BLANK() // Handle cases where neither condition is met
)
)
)
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Thank you so much @mh2587
I'm getting the below error. Can you please advice?
A single value for column 'high_tier_ind' in table 'imei_dashboard' cannot be determined. This can happen when a measure formula refers to a column that contains many values without specifying an aggregation such as min, max, count, or sum to get a single result.
Note: The column 'high_tier_ind' in table 'imei_dashboard' is 0 or 1.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Please create calculated column not measure
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
03-12-2024 03:43 PM | |||
10-06-2021 08:30 AM | |||
06-20-2024 04:58 AM | |||
08-18-2024 09:59 PM | |||
06-10-2024 01:57 AM |
User | Count |
---|---|
141 | |
111 | |
81 | |
61 | |
46 |