Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
risabhroy_03
Partner - Creator II
Partner - Creator II

Return Yes if value is present else NO

I have a field called [In BOM].

I want its value as Y or N.

If it finds any record then Y should be displayed else N.

Please help.

1 Solution

Accepted Solutions
risabhroy_03
Partner - Creator II
Partner - Creator II
Author

I used this & it is working fine.

=if(([In BOM])='-','N','Y')

View solution in original post

2 Replies
stevejoyce
Specialist II
Specialist II

Not sure i follow.  But maybe this:  If(count ([In BOM]) >0, 'Y', 'N')

risabhroy_03
Partner - Creator II
Partner - Creator II
Author

I used this & it is working fine.

=if(([In BOM])='-','N','Y')