Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
everest226
Creator III
Creator III

Flag in chart,, expression

HI

i have created dual flag   for 2 field ,

1 order given   Yes or no

2 Order deliver  yes or no

And created a 2 column name in chart name Order given   order taken but was unable to show yes or no in row  ,it also has ID number column.

stalwar1

@

2 Replies
MarcoWedel

please post a sample application to test with.

thanks

regards

Marco

girirajsinh
Creator III
Creator III

It seems your flag fields are generating NULL in the chat. They clearly have value 'Y' and 'N' in the filters.

It would be interesting to see how you generate those flag fields.

In case your date fields are having null for no value,

try

if(IsNull(ORDER_DATE),'N','Y') as ORDERED_FLAG,
if(IsNull(ORDER_DELIVER),'N','Y') as DELIVERED_FLAG

Or if they are not null try generating flags with

if(len(ORDER_DATE)=0,'N','Y') as ORDERED_FLAG,
if( len(ORDER_DELIVER)=0,'N','Y') as DELIVERED_FLAG

This were still on assumptions so please share your calculations.