cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
fahmad
Frequent Visitor

flight no display along with time

Good morning all.

 

i have two fields flight_no and Flight_time.

 

Flight_Time         Flight_NO

00:00                   XY123

00:01                   XY124

00:05                   XY125

00:10                   XY126

00:20                   XY127

 

i want to show flight_no against flight time in graphical format in graph or as below

fahmad_0-1641970903275.png

Regards,

Faraz Ahmad.

1 ACCEPTED SOLUTION

Hi @fahmad ,

 

The visual in power bi is almost the value after aggregation. If there are multiple values in the text, the first or last value will also be displayed. You can display several flights in the current time by CONCATENATEX function.

Column = CONCATENATEX(FILTER('Table',EARLIER('Table'[Flight Time])='Table'[Flight Time]),'Table'[Flight_no],",")

Measure = CONCATENATEX('Table','Table'[Flight_no],",")

 

Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@fahmad , You need to create a 10 Min bucket

 

10 Min Bucket = time(hour([Flight_Time]), ROUNDUP(Minute([Flight_Time]),-1), 0)

 

Then create a rank

Rank = rankx(filter(Table, [10 Min Bucket] = earlier([10 Min Bucket])), [Flight_Time], ,asc,dense) 

 

Now put Rank on row, Bucket on column, and max of Flight_NO on values of matrix and try

Thank you very much for quick reqply.

 

But some time i have more than once flight on same time example:

 

Flight Time  Flight_NO

 00:30        XY321

00:30         XY521

 

Regards.

Faraz Ahmad.

Hi @fahmad ,

 

The visual in power bi is almost the value after aggregation. If there are multiple values in the text, the first or last value will also be displayed. You can display several flights in the current time by CONCATENATEX function.

Column = CONCATENATEX(FILTER('Table',EARLIER('Table'[Flight Time])='Table'[Flight Time]),'Table'[Flight_no],",")

Measure = CONCATENATEX('Table','Table'[Flight_no],",")

 

Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

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!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors