Use multiple or statement if or

Hi

Is it possible to use the follow

If not empty(Field A) or if not empty (Field B) or if not empty (Field c), ‘changed’, ‘no change)

Thanks
R

the correct syntax would be

If(not isempty([Field A]) or not isempty([Field B]) or not isempty([Field c]), 'changed', 'no change')

Thank you so much!