Jump to content

case statement for data limiting expression


Anusha V

Recommended Posts

Hi,

India has 2 records one is Consumer and another corporate but whenever we have Consumer it should list only Consumer, But when we dont have Consumer it shoul list rest all categories.

 

 

 

ColumnA

Segment

output in detai Vizualization

Remarks

 

 

India

Consumer

Consumer

 

 

 

India

Corporate

will limit the record

If we limit consumer in filterpanel record has to be appeared

 

 

India

Corporate

will limit the record

If we limit consumer in filterpanel record has to be appeared

 

 

Japan

Corporate

Corporate

If we limit consumer in filterpanel record has to be appeared

 

 

Japan

Corporate

Corporate

If we limit consumer in filterpanel record has to be appeared

 

 

China

Consumer

Consumer

 

 

 

China

Corporate

will limit the record

If we limit consumer in filterpanel record has to be appeared

 

 

 

i ahve written expresion like data lmiting casen when find ("Consumer", uniqueconcatenate([segment]))=1 then[segment]= "Consumer" else[segment] is not working

Link to comment
Share on other sites

Try with a calculated column if this gives the desired result:

case

when Find('Consumer',UniqueConcatenate([segment]) OVER [ColumnA]) > 0 and [segment] != 'Consumer' then 'hide'

else 'show'

end

Since you want to consider the countries in CloumnA you have to use a OVER function.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...