Hi all,
I have the following 2 requirements that I can't seem to get to work. I need to find out what quotes have been delivered and what quotes haven't. I want to find out if the 'Date Sent' column is null, which decides if the quote has been delivered, and IFNULL I want to count the quotes and aggregate them by the business unit column. For the second requirement, if 'Date Sent' is not null then count them by business unit column.
I'm currently trying to use this function for when the date is null but it's not working correctly for me... COUNT(IFNULL("Agreement Sent Date"."Date", 0))
Thank you for your time and help.