Forum Discussion
venug20
8 years agoResolver I
Fill Data in Blank Rows (Power Query Editor)
Hi Every one, I have sample data like below table.. i want to fill gaps in power bi... Thanks in Advance... Company City LifeLock Tempe LifeLock ChosenList.com Scottsdal...
- 8 years ago
Zubair_Muhammad
8 years agoCommunity Champion
Is this your expected result
| Company | City |
| LifeLock | Tempe |
| LifeLock | Tempe |
| ChosenList.com | Scottsdale |
| ChosenList.com | Scottsdale |
| Palo Alto | |
| Palo Alto | |
| Palo Alto | |
| Geni | West Hollywood |
| Geni | West Hollywood |
| Slacker | San Diego |
| Slacker | San Diego |
| Technorati | San Francisco |
| Technorati | San Francisco |
| Mahalo | Santa Monica |
| Mahalo | Santa Monica |
| Veoh | San Diego |
| Veoh | San Diego |
| Jingle Networks | Menlo Park |
| Jingle Networks | Menlo Park |
| Prosper | San Francisco |
| Prosper | San Francisco |
| Jajah | Mountain View |
| Jajah | Mountain View |
| Ustream | Mountain View |
| Ustream | Mountain View |
| Aggregate Knowledge | San Mateo |
| Aggregate Knowledge | San Mateo |
| Sphere | San Francisco |
| Sphere | San Francisco |
| MeeVee | Burlingame |
| MeeVee | Burlingame |
- venug208 years agoResolver I
- Zubair_Muhammad8 years agoCommunity Champion
I used this
let Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content], #"Changed Type" = Table.TransformColumnTypes(Source,{{"Company", type text}, {"City", type text}}), #"Added Index" = Table.AddIndexColumn(#"Changed Type", "Index", 1, 1), #"Trimmed Text" = Table.TransformColumns(#"Added Index",{{"Company", Text.Trim, type text}, {"City", Text.Trim, type text}}), #"Sorted Rows" = Table.Sort(#"Trimmed Text",{{"Company", Order.Ascending}, {"City", Order.Descending}}), #"Filled Down" = Table.FillDown(#"Sorted Rows",{"City"}), #"Sorted Rows1" = Table.Sort(#"Filled Down",{{"Index", Order.Ascending}}), #"Removed Columns" = Table.RemoveColumns(#"Sorted Rows1",{"Index"}) in #"Removed Columns"- Zubair_Muhammad8 years agoCommunity Champion