I'm trying join two fields from two content type.
Example:-
content type: type_a
text field: text_field_a (unlimited)
content type: type_b
text field: text_field_b (unlimited)
So, I've set the text field as unlimited.
For each content type node I have input like:-
text_field_a:
Test_A1
Test_A2
text_field_b:
Test_B1
Test_B2
Is it possible to create a combine them in Views and get a result like this?
Test_A1
Test_B1
Test_A2
Test_B2
What I'm getting so far is:-
Test_A1
Test_A2
Test_B1
Test_B2