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
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
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.