Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
AlejoSG1
New Member

Line Graph does not draw complete line

Hi everybody, I'm new to the community, I am having trouble finding the solution for a problem that I have (or can't find the right words to describe my problem).

I want to have a line graph to compare the cumulative number of "contracts" by time and by a category ("ADMINISTRADORA DE FONDOS"). I am using this DAX to calculate:

 

Negocios Acumulados = CALCULATE(
    COUNT(default_1[NOMBRE]),
    FILTER(
        ALLSELECTED(default_1),
        default_1[FECHA REGISTRO] <= MAX(default_1[FECHA REGISTRO]) && default_1[ADMINISTRADORA DE FONDOS] = MAX(default_1[ADMINISTRADORA DE FONDOS])
    )
)
 
When I use the table visualization, it shows the data correctly, but in the line graph there are points that do not connect properly in line as the following image:

AlejoSG1_0-1674949716934.png

 

 

What am I doing wrong?

0 REPLIES 0

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors