Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello I'm trying to creating a filter using an exact match please advise the correct if statement to use
If(match(ABCD,('A1','A2','A3','A4',),'Yes','No')
Kindly correct my code thank you
@smanas need to provide brackets correctly . try below one
If(match(ABCD, 'A1','A2','A3','A4'), 'Yes', 'No')