Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 5 | |
| 5 | |
| 4 | |
| 4 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 13 | |
| 10 | |
| 8 |