web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Expression "XXX e...
Power Apps
Answered

Expression "XXX eq null" is not supported.

(0) ShareShare
ReportReport
Posted on by 10

Hi, 


I get the following error message, though the canvas seems to work fine. 

"The requested operation is invalid. Server Response.  Expression "XXX eq null" is not supported."

 

I've three dropdowns. Two of them are dependent on the entry of one other. The 1st dropdown has the following code in Items
Sort(Distinct(ExcelDataTable, Column1),Result) >> DataCardValue14

The 2nd dropdown (relates to the first) and 3rd dropdown(relates to the second) have these error messages. Code in Items as per below:
2: Distinct(Filter(ExcelDataTable, Column1 = DataCardValue14.Selected.Result),Column2) >> DataCardValue15

3: Distinct(Filter(ExcelDataTable, Column2 = DataCardValue15.Selected.Result),Column3) >> DataCardValue16

 

The default values were initially on Parent.Default. I tried to set default values of the most picked, but that didn't solve the issue. Also the error seemed to occur recently (not from the start).

 

I tried several solutions opted in other discussions on this error, but unfortunately without success. Anyone any idea how to solve this error?

Categories:
I have the same question (0)
  • iAm_ManCat Profile Picture
    18,256 Most Valuable Professional on at

    It looks like your DataCardValue16 doesn't refer to 15, it refers to 14, try changing that to:

    Distinct(Filter(ExcelDataTableColumn2 = DataCardValue15.Selected.Result),Column3)

  • rhendr12 Profile Picture
    10 on at

    Sorry, that was a copy/paste mistake. In the app this is correct. Corrected in the initial support request.

  • Verified answer
    iAm_ManCat Profile Picture
    18,256 Most Valuable Professional on at

    Ok, then looking at the error it looks like it doesn't like getting a blank/null value, which I think will be happening when there is no value selected in one of the related items, so we can do a check before hand and not have it do anything is there is a blank value in the selected item.

     

    DataCardValue14

    Sort(Distinct(ExcelDataTable, Column1),Result)


    DataCardValue15

    If(
     !IsBlank(DataCardValue14.Selected.Result),
     Distinct(Filter(ExcelDataTable, Column1 = DataCardValue14.Selected.Result),Column2)
    )

     

    DataCardValue16

    If(
     !IsBlank(DataCardValue15.Selected.Result),
     Distinct(Filter(ExcelDataTable, Column2 = DataCardValue15.Selected.Result),Column3)
    )

     

  • rhendr12 Profile Picture
    10 on at

    That seemed to do the trick. I've seen this solution before, but I guess I didn't apply it the right way.

    Thanks for your help! Lot's appreciated!

  • iAm_ManCat Profile Picture
    18,256 Most Valuable Professional on at

    Happy I could help @rhendr12 - there's so many ways to do the same things in PowerFx so sometimes it's hard to figure out what you need!

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the April Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Vish WR Profile Picture

Vish WR 1,045

#2
Valantis Profile Picture

Valantis 675

#3
11manish Profile Picture

11manish 592

Last 30 days Overall leaderboard