check if an attribute exists

Deborah2 years ago

Hi,

I am trying to make a calculated attribute that signals me whether another attribute is arriving or not. Something like this

If(io82 exists in the last record)

Can anyone point me to the right condition? can it be done?
Thanks

Anton Tananaev2 years ago

Maybe something like this:

io82 ? true : false
Deborah2 years ago

thanks, works