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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
bhmiller89
Helper V
Helper V

Find Current Value and Previous Value

I have a table that includes Date, MRR, and RAG_Value.

 

The date column is every Friday starting May 4th- Present and will keep running every Friday.

 

 The RAG_Value can range from 0-3. I need to calculate measures for MRR based on current RAG Value and Previous RAG Value

 

 

I tried this but it is incorrect (and returns an error) as I don't need MAX Rag_Value, I need the Rag_Value for the MAX DATE

 

AMBER NormalizedMRR$Current = CALCULATE(SUM(vw_OperationalJobsWithMRR[NormalizedMRR]), MAX(RAGandMRR[RAG_Value])= 2)

 

I do have a date table that isn't currently connected to anything else but is there just in case.

 

Any help is appreciated

1 REPLY 1
v-juanli-msft
Community Support
Community Support

Hi @bhmiller89

It is not clear for me.

I don't need MAX Rag_Value, I need the Rag_Value for the MAX DATE 

AMBER NormalizedMRR$Current = CALCULATE(SUM(vw_OperationalJobsWithMRR[NormalizedMRR]), MAX(RAGandMRR[RAG_Value])= 2)

From above, it seems you need Rag_Value=2 when date is the MAX DATE, you could try this formula

Max date=CALCULATE(MAX(RAGandMRR[Date]),ALL(RAGandMRR))

AMBER NormalizedMRR$Current = CALCULATE(SUM(vw_OperationalJobsWithMRR[NormalizedMRR]), FILTER(ALL(RAGandMRR),RAGandMRR[RAG_Value]= 2&&RAGandMRR[Date]=[Max date]))

Then what do you mean by this sentence

The RAG_Value can range from 0-3. I need to calculate measures for MRR based on current RAG Value and Previous RAG Value

 

Best Regards

Maggie

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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