Forum Discussion
Saxon10
Post Prodigy
4 years agoHow do I combine two visuals reports into one Power BI visual report
Hi, I have the following columns are Id, Code, Result1 and Result2 in data table. The same id and code has two different status. I am currently using two different visual for same id and code...
- 4 years ago
Create a new table either via the query editor or a DAX calculated table.
As a calculated table, for example:
Slicer = DATATABLE ( "Result", STRING, {{"Result 1"}, {"Result 2"}} )See attached.
AlexisOlson
Super User
4 years agoCreate a new table either via the query editor or a DAX calculated table.
As a calculated table, for example:
Slicer = DATATABLE ( "Result", STRING, {{"Result 1"}, {"Result 2"}} )
See attached.
Saxon10
Post Prodigy
4 years agoHi AlexisOlson
Thanks so much for your quick response and support.
This is really amazing and now I can control the status with in the same visual.
And more question regarding this topic.
How can I apply the conditional formatting here.
I used lot of different colours codes for both results.
Now how can I apply the conditional formatting according to the results 1 and result 2.
- AlexisOlson4 years ago
Super User
That sounds like a separate question.
- Saxon104 years ago
Post Prodigy
Thanks for your reply and advice.