Hi all, I have a column values like “UIE1-AW-HWL-10-2-AutoStop-User” , now I want to group, filter all values based on “AutoStop”.
I am trying the following in calculated field:
ifelse(
contains({usage_type}, ‘%AutoStop%’, CASE_INSENSITIVE), {usage_amount}, 0
)
Somehow for the usage type that contains AutoStop, I get 0 rows returned.
Can you help what I need to do in order to return the rows that contains AutoStop as usage_type?