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.
Experts, please someone help me with the below scenario to create the conditional column based on the lowest possible value. Below, the second column should show me whether it is Aggregator/Lowest Level Detail-based on mentioned dots.
Example: For CBL.0006412.02.01.01 it ends with .01 which is the last one and my condition should identify and show me whether it is Aggregator/Lowest Level Detail. And, if you see CBL.0006413.02.01 & CBL.0006413.02.02, it shows Lowest Level Detail.
CBL.0006412 | Aggregator |
CBL.0006412.01 | Aggregator |
CBL.0006412.02 | Aggregator |
CBL.0006412.02.01 | Aggregator |
CBL.0006412.02.01.01 | Lowest level detail |
CBL.0006413 | Aggregator |
CBL.0006413.01 | Aggregator |
CBL.0006413.02 | Aggregator |
CBL.0006413.02.01 | Lowest level detail |
CBL.0006413.02.02 | Lowest level detail |
Solved! Go to Solution.
Use this code to add a new column to your table:
Column =
VAR _NDot =
LEN ( 'Table'[Item] )
- ( LEN ( SUBSTITUTE ( 'Table'[Item], ".", "" ) ) + 1 )
VAR _Dot_Group =
GROUPBY (
SUMMARIZE (
'Table',
'Table'[Item],
"AA", LEFT ( 'Table'[Item], 11 ),
"BB",
LEN ( 'Table'[Item] )
- ( LEN ( SUBSTITUTE ( 'Table'[Item], ".", "" ) ) + 1 )
),
[AA],
"CCD", MAXX ( CURRENTGROUP (), [BB] )
)
VAR _Max_Group =
MAXX ( FILTER ( _Dot_Group, [AA] = LEFT ( 'Table'[Item], 11 ) ), [CCD] )
RETURN
IF ( _NDot = _Max_Group, "Lowest level detail", "Aggregator" )
Output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Really Thanks Vahid for your quick help, you made my day. Thanks a lot again and you are Power BI & DAX expert.
Use this code to add a new column to your table:
Column =
VAR _NDot =
LEN ( 'Table'[Item] )
- ( LEN ( SUBSTITUTE ( 'Table'[Item], ".", "" ) ) + 1 )
VAR _Dot_Group =
GROUPBY (
SUMMARIZE (
'Table',
'Table'[Item],
"AA", LEFT ( 'Table'[Item], 11 ),
"BB",
LEN ( 'Table'[Item] )
- ( LEN ( SUBSTITUTE ( 'Table'[Item], ".", "" ) ) + 1 )
),
[AA],
"CCD", MAXX ( CURRENTGROUP (), [BB] )
)
VAR _Max_Group =
MAXX ( FILTER ( _Dot_Group, [AA] = LEFT ( 'Table'[Item], 11 ) ), [CCD] )
RETURN
IF ( _NDot = _Max_Group, "Lowest level detail", "Aggregator" )
Output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
7 | |
7 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |