Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 |
---|---|
12 | |
12 | |
8 | |
8 | |
6 |
User | Count |
---|---|
27 | |
19 | |
14 | |
11 | |
7 |