Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I want to replace all values to null in between column 1, row 2, and, column 3, row 6. Is this possible?
You can address columns with [ ] and rows with { }. Rows start with 0, columns are usually addressed by their name.
So let's say Column 1 is "Column1" then you would address the range as [Column1]{1..5} etc.
Another (much crazier) alternative is to perform table surgery like this:
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlTSUTICYmMgNlGK1YkG81BFjDFETDBETDFEzDBEzFFFYgE=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column1 = _t, Column2 = _t, Column3 = _t, Column4 = _t]),
Cut = Table.RemoveColumns(Table.FirstN(Table.Skip(Source,1),5),{"Column1","Column2","Column3"}),
Skip = Table.FirstN(Source,1) & Cut & Table.Skip(Source,6)
in
Skip
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
25 | |
10 | |
7 | |
6 | |
6 |
User | Count |
---|---|
30 | |
11 | |
11 | |
10 | |
6 |