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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

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

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.