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 / create variable from c...
Power Apps
Answered

create variable from collection that could be blank and put a zero if blank?

(0) ShareShare
ReportReport
Posted on by Microsoft Employee

So I have a variable that works

Set(
 varBuildingDailyCount,
 Filter(
 collectionDailyLog,
 FieldDate = varCurrentDate && Building = varBuilding.Value
 ).NumberPerday
)

This works to bring back the value of number per day. My issue is that sometimes that number does not exist and I need to set the value to zero. If I alter the formula with an if, I cannot seem to set the table value to zero if blank.

 Set(varDailyCount, If(IsBlank(Filter(
 collectionDailyLog,
 FieldDate = varCurrentDate && Building = varBuilding.Value
 ).NumberPerday
),0,
 Filter(
 collectionDailyLog,
 FieldDate = varCurrentDate && Building = varBuilding.Value
 ).NumberPerday
))

Any and all help would be appreciated!

Categories:
  • Verified answer
    RandyHayes Profile Picture
    76,299 Super User 2024 Season 1 on at

    @Anonymous 

    To be clear, in your set formula, you are setting your variable to a table, not a value.  If you want just a value, then you need to utilize the LookUp function and not the Filter function.

    ex. with LookUp and also Coalesce to provide the 0 value if blank.

    Set(
     varBuildingDailyCount,
     Coalesce(
     LookUp(collectionDailyLog,
     FieldDate = varCurrentDate && Building = varBuilding.Value,
     NumberPerday
     ),
     0
     )
    )

     

    If it truly is a Table that you want in your variable, then you can implement this:

    Set(
     varBuildingDailyCount,
     ForAll(
     Filter(collectionDailyLog,
     FieldDate = varCurrentDate && Building = varBuilding.Value
     ).NumberPerday,
     {NumberPerday: Coalesce(NumberPerday, 0)}
     )
    )

     

    I hope this is helpful for you.

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

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
11manish Profile Picture

11manish 402 Super User 2026 Season 2

#2
Mohsin Ali Profile Picture

Mohsin Ali 328

#3
WarrenBelz Profile Picture

WarrenBelz 296 Most Valuable Professional

Last 30 days Overall leaderboard