Hello,
I'm trying to create a simple phone app to track sales and I'm having 2 main issues. Sorry in advance if these issues I'm about to present should be easy fixes. If anyone can help, I'd greatly appreciate it.
1) Error message: "Incompatible type. We can't evaluate your formula because the context variable types are incompatible with the types of values in other places in your app. "
I thought maybe if I went through the whole app and made sure everything looked consistent that this would clear itself, it didn't.
EditForm(QuoteDetailsForm);
Navigate(QuoteDetailsPage,ScreenTransition.Fade,
{EditRecord:ThisItem,
type:ThisItem.Status,
assign:ThisItem.SalesTerritory,
area1:ThisItem.Owner,
priority:ThisItem.Priority,
disabledcomment:true,
disabledsubject:true,
disableddesc:true,
subjv:true,
descv:true,
commv:true})
2) Error Message: "Expected Operator. We expected an operator such as +, *, or & at this point in the formula."
Navigate(QuoteDetailsPage, ScreenTransition.Fade,
{EditRecord:ThisItem,
type:ThisItem.Status
assign:ThisItem.SalesTerritory,
area1:ThisItem.Owner,
priority:ThisItem.Priority,
disabledcomment:true,
disabledsubject:true,
disableddesc:true})