I'm getting started with Command Bar and Power fx and running into an issue.
I have a new button on a custom entity I would like to associate with a new field that is a checkbox. When the button is selected, check the box.
Command Bar - Main Form
Entity = 'Text Messages'
Field = 'Follow Up Complete'
The language I am using now to test entering information when the button is selected works.
Patch('Text Messages',Self.Selected.Item,{'Recipient Phone Number':"1"})
The problem is that when I reach the part where I should define the field I want, Follow Up Complete, the intelligent list doesn't have it available.
If I manually type it in, it fails.
Patch('Text Messages',Self.Selected.Item,{'Follow Up Complete':"1"})
Why might the field be unavailable?
Thanks in advance!