return the value
The query only returns the dates where sales have occurred.
I want to be able to the sale pattern for the entire year.
column A is a date (every day of year)
column B is a date (only days that a sale occured)
column c sale amount corresponding to date in column B
a b c d
05/23/2006 05/22/2006 5 0
05/24/2006 05/24/2006 10 10
if a (date) is = b (range of dates) return the value of c in column d else "0"
column b is currently a list of only the dates where asomething was sold
Can anyone help populate the column d with either the sale amount or 0
Thanks
The query only returns the dates where sales have occurred.
I want to be able to the sale pattern for the entire year.
column A is a date (every day of year)
column B is a date (only days that a sale occured)
column c sale amount corresponding to date in column B
a b c d
05/23/2006 05/22/2006 5 0
05/24/2006 05/24/2006 10 10
if a (date) is = b (range of dates) return the value of c in column d else "0"
column b is currently a list of only the dates where asomething was sold
Can anyone help populate the column d with either the sale amount or 0
Thanks