Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Building Power Apps
Answered

Combining formulas

(1) ShareShare
ReportReport
Posted on by 21
Hi. Can someone help me with combining formulas please? I have two formulas that filter a gallery and both work individually however I can't seem to combine them. I need the gallery to show only items where the "open for votes" column = "yes" AND the "added to backlog date" column equals the current month. Here are the individual formulas that work.
 
Formula 1:
Filter('PORT Enhancements Backlog','Open for Votes'.Value = "yes")
 
Formula 2:
Filter('PORT Enhancements Backlog',Month('Add to Backlog Date')=Month(Now()))
 
My attempt to combine them which doesn't work:
Filter('PORT Enhancements Backlog', 'Open for Votes'.Value = "yes" And Month('Add to Backlog Date')=Month(Now())))
 
I get an error that says "incompatible types for comparison. These types can't be compared: text, Number.
  • Jamep2 Profile Picture
    21 on at
    Combining formulas
    That did it! @Micheal E. Gernaey Thanks so much for taking the time to provide a solution AND explain it. I'm only about a month into this application and still so much to learn so I appreciate you greatly!
  • Verified answer
    Michael E. Gernaey Profile Picture
    38,427 Super User 2025 Season 1 on at
    Combining formulas
     
    Thanks for the picture.
     
    wait that is not an error, That is a Warning for Delegation
     
    Totally different issue. It will only show because you are using And
     
    We would have to build an entirely different Filter like this.
     
    So let me explain. We are using With to do the first Filter and assigning the results to a temporary in memory table of records
    Then we do the second filter on that so we avoid the Delegation Warning, which WOULD mess up your results by the way
    With (
        { FirstLevelFilter: Filter('PORT Enhancements Backlog','Open for Votes'.Value = "yes") },
    	
    	Filter(FirstLevelFilter, Month('Add to Backlog Date')=Month(Now()))
    
    )
    please mark as the answer and if you would like a Like also :-)
  • ronaldwalcott Profile Picture
    1,988 on at
    Combining formulas
    One possibility is Power Apps may be applying a short-circuiting evaluation for this condition
    Filter('PORT Enhancements Backlog',Month('Add to Backlog Date')=Month(Now()))
    and not for the combination.
     
    Is 'Add to backlog Date' ever blank, if so consider adding a !IsBlank('Add to Backlog Date') into the evaluation,
    You would decide how you manage blank dates.
  • Jamep2 Profile Picture
    21 on at
    Combining formulas
    Hi, @Michael E. Gernaey, thanks for the response. I see the typo you pointed out however when I remove it, I still get the same error: "incompatible types for comparison. These types can't be compared: text, Number. Not sure why they won't work together when they work individually. The Add to backlog date is a text string.
     
     
    Filter('PORT Enhancements Backlog', 'Open for Votes'.Value = "yes" And Month('Add to Backlog Date')=Month(Now())
  • Suggested answer
    Michael E. Gernaey Profile Picture
    38,427 Super User 2025 Season 1 on at
    Combining formulas
     
    You have a typo in the long version. Unless you took that out of a large expression.
     
    But:
    1) please always show a picture of the code an error, so we can see which part is highlighted.
    2) I see no issues other than the typo
    3) is Add to Backlog Date a string or a date?
     
    Aside from the typo, I see no reason this wouldn't work as is, so once I see a picture where the squiggles are, I can help more.
     
    Filter('PORT Enhancements Backlog', 'Open for Votes'.Value = "yes" And Month('Add to Backlog Date')=Month(Now()))
    
    should be
    
    Filter('PORT Enhancements Backlog', 'Open for Votes'.Value = "yes" And Month('Add to Backlog Date')=Month(Now())
     
    If this solved your problem Please Mark as resolved and maybe a like :-)

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

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Markus Franz – Community Spotlight

We are honored to recognize Markus Franz as our April 2025 Community…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,513 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 65,688 Most Valuable Professional

Leaderboard