Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I would like to find out the position of the row that starts with or contain "DE" from the column or list below. The result should be 1. What function shall I use? Appreciate it first!
| Column1 |
| ABC |
| DEFQF |
| ESSS |
| DDDA |
Solved! Go to Solution.
= List.PositionOf(List.Transform(#"Previous Step"[Column1], each Text.StartsWith(_, "DE")),true)
or, possibly, depending on your real data and requirements:
= List.PositionOf(List.Transform(#"Previous Step"[Column1], each Text.StartsWith(_, "DE")),true,Occurrence.All)
= List.PositionOf(List.Transform(#"Previous Step"[Column1], each Text.StartsWith(_, "DE")),true)
or, possibly, depending on your real data and requirements:
= List.PositionOf(List.Transform(#"Previous Step"[Column1], each Text.StartsWith(_, "DE")),true,Occurrence.All)
Amazing! Thank you ronrsnfld!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 7 | |
| 7 | |
| 5 | |
| 4 | |
| 3 |
| User | Count |
|---|---|
| 16 | |
| 14 | |
| 14 | |
| 10 | |
| 9 |