Explore Web ID field from Symbol Information

Hello All,

Please see the Wed ID field in the image. Is it possible to explore this field to find all that are empty?
So I am thinking something like:
Addcolumn(getfndata("Web ID"),"ID");
Is such a variable as Web ID defined?


Thanks in advance.

yes, you can, but not using AddColumn(). You have to use AddTextColumn()

something like this where we check string length

Filter = StrLen( GetFnData( "WebID" ) ) < 1 ;
AddTextColumn( GetFnData( "WebID" ), "WID" );
1 Like

Awesome, thanks