Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi I created a straight table like this
x y
1 1
1 2
2 5
2 2
I want to count where x and y have equal values . I want to compare only straight table data not entire data.
Please help
In the straight table take an expression like: =Count(Total If(x=y,x))
HI
In load, Try like this
Load If(x=y, 1) as Flag from tablename;
Then in expression
Count({<Flag = {1}>} x)
See attachment
Regards
Hi,
Try this Expression
=Sum(Total if(x=y,1,0))
Regards,
Vivek