The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello,
I have 3 measurements on the line chart. I would like them to be connected with line ? Any ideas why please ?
There is date table with relationship to Table 1,2,3. All 3 have date column with dates in all rows as per screeshot.
Total data points = DIVIDE(CALCULATE(COUNT('Table1'[Number])*112),DISTINCTCOUNT('Table1'[Attribute]))
Total data points 07 = DIVIDE(CALCULATE(COUNT('Table2'[Number])*112),DISTINCTCOUNT('Table2'[Attribute]))
Total data points 08= DIVIDE(CALCULATE(COUNT('Table3'[Number])*112),DISTINCTCOUNT('Table3'[Attribute]))
Solved! Go to Solution.
Hi @MasterSonic ,
Try to group the three tables first, and then append the three tables into a new table.
then use this measure:
Total data points =
DIVIDE (
CALCULATE (
COUNT ( 'Table'[Number] ) * 112,
'Table'[Table] = MAX ( 'Table'[Table] )
),
CALCULATE (
DISTINCTCOUNT ( 'Table'[Attribute] ),
'Table'[Table] = MAX ( 'Table'[Table] )
)
)
The PBIX file is attached for reference.
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
Hi @MasterSonic ,
Try to group the three tables first, and then append the three tables into a new table.
then use this measure:
Total data points =
DIVIDE (
CALCULATE (
COUNT ( 'Table'[Number] ) * 112,
'Table'[Table] = MAX ( 'Table'[Table] )
),
CALCULATE (
DISTINCTCOUNT ( 'Table'[Attribute] ),
'Table'[Table] = MAX ( 'Table'[Table] )
)
)
The PBIX file is attached for reference.
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
User | Count |
---|---|
16 | |
8 | |
6 | |
6 | |
5 |
User | Count |
---|---|
23 | |
13 | |
13 | |
8 | |
8 |