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!

Report
All responses (
Answers (