Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Friends,
As I have four inline attributes like in the below, I would like to create a list box that should not show Mar in the list box and rest should show.
How to block the month Mar.
Load * Inline[
Month
Jan
Feb
Mar
Apr] ;
Regards
Chriss
In Listbox expression use if(not wildmatch(Month,'*Mar*'),Month)
In Listbox expression use if(not wildmatch(Month,'*Mar*'),Month)
Hi,
Try this code.
T_Month:
Load
IF (Month= 'Mar',Null(),Month) AS Month
Resident TableName;
Regards,
Nirav Bhimani
Hello Sivaraj and Nirav,
Owesome, it works...
Regrads
Chirss
Hi Sivaraj & Chriss,
Can you please share a demo file of the expression which is working in above case.
In my case ur expression is not working.
Regards,
Nirav Bhimani
Hey Check the attachment