I have 2 lists and am trying to highlight differences i.e.
Value owned Managed values
value 1 Value 1
Value 2
Value 3 Value 3
I want to highlight Value 2
So far I have used ETL to generate a new dataset with just these 2 columns. I am then trying to use beastmode using something like NULLIF or a case when 'managed values' ='' then count 'value owned', but this is not working I just get a count of zero (when I know there is at least one difference). Any ideas? Code for this is ...
SUM(
(CASE
WHEN `ManagedValues` = '' THEN `Valueowned`
ELSE 0
END)
)