hopefully the expalnation of my data model and what im trying to acheive should frame my question sufficiently well. the expression that doesnt work is expression 2
here is my source table:
Fault_id, Created_date, actualCloseDate
Straight table properties
Dimension = Created_date
Expression 1 = count({1}fault_id) i.e how many faults where raised on a particular day
what i want from expression 2 is for the expression to look through the entire source table and count all of the actualCloseDate that equal the Date in the dimension.
It looks like you are trying to compare the dates on a row by row basis. You can't do that using set analysis as the set analysis filter is applied once to the whole data set before the table is constructed, not once per row. You could do this with a sum(if()) expression, like