Forum Discussion
Kid_Koala
8 years agoFrequent Visitor
Issue with merging data while using Power Bi for SEO
I'm using Power Bi for SEO, position analysis. Got two tables. First be like: Keywords Position on 7/08/2017 A 10 B 11 C ...
CahabaData
8 years agoMemorable Member
So it probably should be pointed out that a side-by-side merge of 2 days, just one time is fine. But if the data is coming in daily, then this approach cannot scale.
Instead the data should be appended into a single table in a normal structure:
Keywords Date Position
A 7/8/17 10
B 7/8/17 11
A 7/9/17 20
B 7/9/17 21
etc
Then rely on Matrix visual or transform as part of the visual display and not as part of the table model.
- Kid_Koala8 years agoFrequent Visitor
Much thanks for your answer, CahabaData
Sure, I understand the scalability thing. Just needed that one for a one time report.