Forum Discussion
Cross Table If Statements?
- 6 years ago
Hi Anonymous
- Try Merge Queries like in the video below.
- Or if you wont to preserve the model and add columns from different tables use RELATED or RELATEDTABLE DAX functions.
Best Regards,
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me. - Try Merge Queries like in the video below.
Hi Anonymous
- Try Merge Queries like in the video below.
- Or if you wont to preserve the model and add columns from different tables use RELATED or RELATEDTABLE DAX functions.
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.
Thanks Mariusz,
Related hasnt worked due to the relationships, and I'll be damned if I can get RelatedTable to work in the way I'm after.
For instance, if the below is a normal query, how would I turn this into using the RelatedTable? - where v_GS_DISK[Caption0groups] is the RelatedTable.
Support = IF(FIND("HDD",v_GS_DISK[Caption0groups], 1,BLANK()),"Replace")
Started looking at Merging. Its an option i'll continue to explore. A couple questions however;
1) Does the data in the merge update when the sources brings in new information?
2) Is it posible to merge a group? i.e in Table B I have a group i've made from a column. But when I merge Table B to Table A, its not an option. It took a reaaaly long time to make some of those groups and I reaaaly dont want to make them again manually in Table A post merge.
Thanks,
Rich
- coachVE6 years agoFrequent Visitor
1) Yes, the merge is happening with each refresh and should normally be done in the beginning.
Extract->Transform->Load
2) because the merge is done in the beginning, you cannot use grouping or other columns you created after. - Anonymous6 years agoNot applicable
Anyone any thoughts on the above?