cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
DrewZain2345
New Member

Iterate % Complete Over Days

 

I'm trying to create a line graph that shows the "calendar percent complete" between two dates. (Iterate a percent complete calculation over days between two dates)

DrewZain2345_0-1696350706341.png


I have my calendar percent complete measure:

Calendar Percent Complete =
VAR _DaysSinceStart = DATEDIFF ( MIN ( 'Contract'[Start Date] ), TODAY (), DAY )
VAR _Duration = DATEDIFF ( MIN ( 'Contract'[Start Date] ), MAX ( 'Portfolio'[Completion] ), DAY )
RETURN
DIVIDE (
    _DaysSinceStart, _Duration
)

And I started with this:

IterativeMeasure =
CALCULATE(
    [Calendar Percent Complete],
    FILTER(
        ALL('Date'[Date]),
        'Date'[Date] >= MIN('Contract'[Start Date]) &&
        'Date'[Date] <= MAX('Portfolio'[Completion])
    )
)

Getting these results:

DrewZain2345_1-1696351107245.png

 

 

Relationship issues?

1 REPLY 1
amitchandak
Super User
Super User

@DrewZain2345 , Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors