Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Krish2459_58
Creator
Creator

flag data

Hi,

I have a column were i need to derive a flag as .

If first character starts with "F" as good else " Bad".

 

Thanks..

Labels (1)
1 Solution

Accepted Solutions
MayilVahanan

Hi

Try like below

If(Left(Columnname, 1) = 'F', 'Good', 'Bad')

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

1 Reply
MayilVahanan

Hi

Try like below

If(Left(Columnname, 1) = 'F', 'Good', 'Bad')

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.