I am having some problems with a code #2185
Unanswered
antoniojoao1
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Can you please share what the error message says? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey there guys, I am new with power fx and I am having a problem, so there is this checklist, I need to make some adjustments. It's a vehicle checklist, and I need to add a function that prevents users to open a new checklist without closing a previous checklist, so I developed this code:
If(
IsBlank(
LookUp(
Responsavel_DataCard2,
DataCardKey5 = DataCardValue30 And ChecklistStatus = "Open"
)
),
Notify("A new checklist can be open."),
Notify("You have an open checklist. Finalize it before opening a new one.")
)
but power apps keep saying there is an error on the code, and I can't find, any help would be welcomed.
Beta Was this translation helpful? Give feedback.
All reactions