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
FedeI
Regular Visitor

Getting a status from another table (periods of time)

Hi to everyone

I would really apreciatte some help to solve an issue.

 

I have two different tables.

The first one has info of a delivery date . Based on that delivery, I need to get the status related to it on table 2.

 

Table 2 is structured like this:

Periods of timeStatus
08/10/2019H10H11 ´19
20/10/2019Nov ´19
06/11/2019H11H12 ´19
20/11/2019Dic ´19

 

I need the status considering in which period of time the delivery date is in.

For example, if the delivery is 15/11/2019, the status would be H11H12 ´19.

 

Which function would you use? How would you do it?

Thanks very much!!

Federico.

 

2 REPLIES 2
Anonymous
Not applicable

@FedeI 
Please create a measure as per below code and check if it works for you.

Measure = CALCULATE(MAX(StatusInfo[Status]),TOPN(1,FILTER(ALL(StatusInfo),StatusInfo[Periods of time]<=MAX(DeliveryDate[Date])),StatusInfo[Periods of time]))

 

Hi @Anonymous, how are you?

 

First of all, thank you for your answer.

 

I cant use that formula because I need a single result for each line in my table 1.

I need a formula I can use in a column.

 

In adittion, the status i need to get from the other table would have "text" format. I suppose I will not be able to use the MAX function.

 

Fede.

 

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