Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi there!
I've been struggling with validation that I needed to perform on some data and I hope this might help someone.
Problem: check if a large non sequential list contains some number with the expected outcome being true or false.
YouTube suggested me this video where they talk about what is Binary Search and I tried it and to my amusement it worked.
The previous query ran for 4 hours and by implementing this instead of List.Contains, the run time reduced to 1h25minutes!
As they say on the video, the list must be sorted in a ascending order.
let
f=
(_list as list, _x as any, _t as number, _b as number) as logical =>
if _t>_b then false else
let
_m = Number.Round((_t+_b)/2,0)
in
if _x<_list{_m} then @f(_list, _x, _t, _m-1) else
if _x>_list{_m} then @f(_list, _x, _m+1, _b) else
true
in
f
I also did a limited test with text and it seemed to work.
How long does it run when you use List.Buffer ?
It ran with the list buffered.
I didn't run any tests with an unbuffered list.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
9 | |
9 | |
8 | |
6 | |
6 |