Hi all,
about new Command Apps (Customization Buttons), I need a button able to clear (set null) a lookup field.
https://docs.microsoft.com/en-us/powerapps/maker/model-driven-apps/commanding-use-powerfx
How can I do it using the Power Fx commands? Note: I don't want to use JavaScript.
My first tentative was this expression:
Patch(Leads,Self.Selected.Item,{'Lookup Column': Blank()});
but the Blank() command doesn't work: no reference item clear (it tested it after publishing all customizations).
Unfortunately, there is no Null() function like in Power Automate.
David