Trouble with IF & IsBlank expressions on dropdown columns. Any inputs please.
I get this weird runtime error:
The requested operation is invalid. Server Response: The $filter expression must evaluate to a single boolean value.
LookUp( AddColumns( Distinct( Filter( Positiondata, If(IsBlank(DataCardValue14_1.Selected.Value), Blank(), "'JobFamily'= DataCardValue14_1.Selected.Value") ), Job_code ).Result, "Count", CountRows( Filter( Positiondata, Job_code = Result ) ) ), Count = Max(Count), Result )
HI @gotovamsee ,
Without looking at anything else for the moment, what does the Blank() propose to do? Should it not be testing a field - IsBlank(FieldName)?
I expect the Blank() expression to help me with ignoring the second matching input whenever the dropdown selection is blank on DC Value10. I could get past that and now held with another runtime error that looks like this.
Issue
The requested operation is invalid. Server Response: A binary operator with incompatible types was detected. Found operand types 'Edm.Boolean' and 'Edm.String' for operator kind 'And'.
Here is the updated code.
LookUp(
AddColumns(
Distinct(
Filter(
Positiondata,
'Position Title' = DataCardValue9_1.Text,
If(IsBlank(DataCardValue10_1.Text), Blank(), "'Country' = DataCardValue10_1.Text")
),
Job_code
).Result,
"Count",
CountRows(
Filter(
Positiondata,
Job_code = Result
)
)
),
Count = Max(Count),
Result
)
Hi @gotovamsee ,
This post may assist you - I cannot see anything else that sticks out
Hi @gotovamsee ,
Just checking if you got the result you were looking for on this thread. Happy to help further if not.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Check out new user group experience and if you are a leader please create your group
Did you miss the call?? Check out the Power Apps Community Call here!
See the latest Power Apps innovations, updates, and demos from the Microsoft Business Applications Launch Event.
User | Count |
---|---|
254 | |
250 | |
82 | |
37 | |
30 |
User | Count |
---|---|
301 | |
264 | |
117 | |
65 | |
45 |