Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I have table A and table B, as shown below
TableA:
Business
A
b
c
d
e
f
tableB:
Business
A
b
g
h
i
I need an output and I need to create a column as FLAG which has Yes and NO fields in it,
if a user selects YES
output
A
B
has to be shown
if a user selects NO
c
d
e
f
g
h
i
Hi,
Please check the attached qvw if this helps.
Hi this is what I have done is there any other way doing this ? Thanks for the response @ramchalla
Hi @SK28 I think you missed posting here what you did. Can you please post the missing part again?
Try this
TableA:
LOAD *, 'Yes' AS FLAG
INLINE [
Business
A
B
C
D
E
F
];
TableB:
LOAD *, IF(Not Exists(Business), 'No', 'Yes') AS FLAG
INLINE [
Business
A
B
G
H
I
];