- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Power Query: Select...Case...End Select
Sorry, I'm more of a VBA guy....
Looking for something similar in PowerQuery.
I'd like to categorize by Tenure...
1 to 30
31 to 60
60 to 90
90 and above
some sort...
Thank you.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In Power Query, add a custom column with the syntax:
if [Tenure] <= 30 then "1 to 30" else if [Tenure] >30 and [Tenure] <= 60 then "31 to 60" ...
You can also bucket items from the desktop UI or with DAX, rather than use Power Query.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can also use DAX to add a calculated column like:
Buckets = IF ( Table[Tenure] > 1, IF ( Table[Tenure] <= 30, "1 to 30", IF ( Table[Tenure] <= 60, "31 to 60", IF ( Table[Tenure] <= 90, "61 to 90", "90 or above" ) ) ) )
If you need to do segmentation on your data, please refer to blogs below:
http://www.daxpatterns.com/static-segmentation
http://www.daxpatterns.com/dynamic-segmentation
Regards.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
The brunching can be done through the use of data manipulation functionality in Power BI.
This in a way a bit clunkier, but makes your script a bit more flexible when it requires changes to the conditions/brackets.
Say, we have a condition table which looks like this:
To Value 10 LOW 20 MID 30 HIGH
This script converts it into From..To view:
//Conditions
let //Assume we have a table describing the "select..case" scenario Source = #table({"To", "Value"}, {{10, "LOW"}, {20, "MID"}, {30, "HIGH"}}), //Add column "From" and remember the format of the table, we will use it later TableType = Value.Type(Table.AddColumn(Source, "From", each null, type number)), //Create From-To version of the table by shifting the column "To" down ListSkip = List.RemoveLastN (Source[To], 1), // this step truncates the list from the bottom ListAdd = List.Transform (ListSkip, each _+1), // this step addes 1 to each item in the list as we do not want overlaps, this makes 10 => 11, 20 => 21 etc. ListFrom = List.Combine({{1}, ListAdd}), // this step adds a starting point (1 in our case) as a base for the first item (i.e. from 1 to 10) //New combine the created list and the existing table TableCombine = List.Combine({Table.ToColumns(Source),{ListFrom}}), // Build the table as a set of lists/columns TableBuild = Table.FromColumns(TableCombine, TableType), // Convert to Table - notice that we use the TableType we recorded earlier #"Reordered Columns" = Table.ReorderColumns(TableBuild,{"From", "To", "Value"}) in #"Reordered Columns"
It makes the table to look like (or you can manually create it):
From To Value 1 10 LOW 11 20 MID 21 30 HIGH
The following function returns a [value] from a condition based on argument provided
(amount as number)=> let result = Table.SelectRows(Conditions, each [From]<= amount and [To] >= amount){0}[Value] /* Conditions refers the the condition table From|To|Value that we have created earlier */
/* {0}[Value] - this bit returns the field [value] in first row of the filtred Conditions table */ in result
This is the use case:
let //Assume we have a table describing the data to be classified Source = Table.FromColumns({{1..25}}, Value.Type(#table({"Amount"}, {null}))),
#"Added Custom" = Table.AddColumn(Source, "Custom", each fSelectCase([Amount]))
//fSelectCase is the funciton that we created earlier in #"Added Custom"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can also use DAX to add a calculated column like:
Buckets = IF ( Table[Tenure] > 1, IF ( Table[Tenure] <= 30, "1 to 30", IF ( Table[Tenure] <= 60, "31 to 60", IF ( Table[Tenure] <= 90, "61 to 90", "90 or above" ) ) ) )
If you need to do segmentation on your data, please refer to blogs below:
http://www.daxpatterns.com/static-segmentation
http://www.daxpatterns.com/dynamic-segmentation
Regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks those are valuable info and links...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In Power Query, add a custom column with the syntax:
if [Tenure] <= 30 then "1 to 30" else if [Tenure] >30 and [Tenure] <= 60 then "31 to 60" ...
You can also bucket items from the desktop UI or with DAX, rather than use Power Query.

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
04-30-2024 01:10 AM | |||
06-06-2024 11:44 AM | |||
07-01-2024 06:44 PM | |||
Anonymous
| 03-21-2024 08:15 AM | ||
10-02-2024 10:54 PM |
User | Count |
---|---|
141 | |
115 | |
84 | |
63 | |
47 |