Hi All,
I am running with a error with a below beast mode formula :
SUM(CASE WHEN DATE_FORMAT(`Date`,'%m') IN (DATE_FORMAT(DATE(MIN(`Date_INT`)),'%m')) THEN `ColumnA` END)
What i am trying to do here is sum column A when the condition for month number is same month number to minimum date(first date) in the column but this giving me an error with no output.
Need some suggesstion how can i achieve this. I tried using date_format() without date() in the formula but still has the same error.