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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

iterate through another table

Hi, 

 

I have a still to do list of task pr productionsection and these task have different order of handling, so one task needs to be finished first before another one should start. I only wants to show the task that currently needs to be carry out. I need some kind of dummy in a calculated column.
example:
task B needs to be finish before C and C before D,  A Can be start anytime and should show in the list regardless.  

The
 productsection    task    dummy (filter later in report)
1.                          A              1
1.                          B.              1
1.                         C                0
1.                        D                  0
2.                        A                 1

2.                       C                   1

2.                       D                   0

2.                       E                   0


Desired list
1.A
1.B

2.A

2.C

 

3 REPLIES 3
Anonymous
Not applicable

Hi @Anonymous ,

 

Has the problem be solved?

 

Best Regards,

Jay

FrankAT
Community Champion
Community Champion

Hi @Anonymous 

you can do it like this:

 

15-09-_2020_23-23-24.png

With kind regards from the town where the legend of the 'Pied Piper of Hamelin' is at home
FrankAT (Proud to be a Datanaut)

zzzeagle
Frequent Visitor

How about this?

  1. Duplicate the original task list twice
  2. In the first, filter where task = A
  3. In the secon, filter where task != A, then group by ProductSection and use the Min of Task
  4. Append the two copies of the task list
  5. Merge the appended lists to the original task list

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors