check if an attribute exists

Deborah3 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 Tananaev3 years ago

Maybe something like this:

io82 ? true : false
Deborah3 years ago

thanks, works