Hi,
I have a requirement that I can achieve at the WebI layer but would like to back this into the IDT layer if posible.
The complexity above is that it must calc at the lowest level Product Config Oid.
=(If([TP Object Count]> 0; "YES"; "NO") ForEach([Product Config Oid]))
I am able to replicate with a dimension with the following.
CASE WHEN @Select(Tech Pack Information\TP Object Count) > 0
THEN 'YES' ELSE 'NO'
END
But the gap in the above is that it's not at the detail level for each Product Config Oid.
Please let me know if there is a better method to achieve this.