Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Thanks for taking time to look at this issue first of all, I am using a bar chart with WildMach expression. So I created a new dimension "App Login type" and included this below expression
=if(wildmatch(event_type,'AccessToken*'),'Access Token',
if(wildmatch(event_type,'VerifyFaceID*'),'Face ID',
if(wildmatch(event_type,'VerifyPin*'),'App Pin',
if(wildmatch(event_type,'VerifyTouchID*'),'Touch ID', event_type))))
Below is what i put in and bars appeared in 3 colours are correct and working.
However, I am getting all the categories that "wildmatch " collecting from instead of the categories I want it to appear, Which is, below is my categories,
'Access Token',
'Face ID',
'App Pin',
'Touch ID',
But below is how results are appearing, which I don't want
But I actually want is something like this below,
How do I make that change is my question, Any help would be really appreciated. Thanks in advance
Remove the part I've marked in red.
=if(wildmatch(event_type,'AccessToken*'),'Access Token',
if(wildmatch(event_type,'VerifyFaceID*'),'Face ID',
if(wildmatch(event_type,'VerifyPin*'),'App Pin',
if(wildmatch(event_type,'VerifyTouchID*'),'Touch ID', event_type))))
Remove the part I've marked in red.
=if(wildmatch(event_type,'AccessToken*'),'Access Token',
if(wildmatch(event_type,'VerifyFaceID*'),'Face ID',
if(wildmatch(event_type,'VerifyPin*'),'App Pin',
if(wildmatch(event_type,'VerifyTouchID*'),'Touch ID', event_type))))
@henrikalmen Thank you so much works perfect now