The form that I developed is not recognizing a 0 in the SharePoint list for some reason. If the value is greater than 0 it works perfect, the problem is I get ?? BLANK ?? when it is 0. Tried an IF statement but that is plagued with errors. Is there some advice or help with why i dont get the list value of 0?
What I have now
"Previous Month Value (Kg) - " &
LookUp(
Sort('Waste Disposal Data', 'First Day in Reporting Period', Descending), // Sor t to get mos trecent on top
'Reporting Site'.Value = DataCardValue2.Selected.Value, // Pick the first entry in sorted list that matches Reported Site
'Hazardous - OffSite ReUse') // use the offsite resuse value found in the entry above
What I tried to do to insert a 0 but it errors out
"Previous Month Value (Kg) - " &
LookUp(
Sort('Waste Disposal Data', 'First Day in Reporting Period', Descending), // Sor t to get mos trecent on top
'Reporting Site'.Value = DataCardValue2.Selected.Value, // Pick the first entry in sorted list that matches Reported Site
(IF(
ISBLANK('Hazardous - OffSite ReUse'),0,'Hazardous - OffSite ReUse'