Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get 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 |
|---|---|
| 11 | |
| 9 | |
| 9 | |
| 6 | |
| 5 |
| User | Count |
|---|---|
| 27 | |
| 22 | |
| 19 | |
| 17 | |
| 11 |