vignesh
7 months agoNew Contributor II
Square Brackets in Member Filter (Text Property)
Hi Experts,
I am trying to use a member filter based on the Text property. Here are the sample text property values:
Member1 = PASSTHRU~[False]|IPL~[False]
Member2 = PASSTHRU~[True]|IPL~[False]
I wanted to filter the members that have " PASSTHRU~[True] " in the text property, i tried the filter below but it returned no results:
U4#Top.Base.where(Text8 Contains PASSTHRU~[True])
I do get results if i use U4#Top.Base.where(Text8 Contains PASSTHRU~), but as soon as i add " [ " character, it doesn't pull any members.
Any suggestion would be helpful.
I tried all the below formats, nothing worked:
U4#Top.Base.where(Text8 Contains 'PASSTHRU~[True]')
U4#Top.Base.where(Text8 Contains [PASSTHRU~[True]])
U4#Top.Base.where(Text8 Contains PASSTHRU~[[True]])