Hello,
I’m trying to create a BAQ for a Dashboard to show total demand quantity when ship date is over 60 days from current day. I got the BAQ to show the quantity but it has an extra line with the demand quantity field blank. Any idea how I can eliminate this extra line?
I might be wrong here, but I think since your else condition is not present in your sum Calculated field, it’s returning the rest as null so there is an extra row. Try:
sum( case when DemandInDays > 60 then OrderRel2.OurReqQty else 0 end)