Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
ILANGO_10
Frequent Visitor

How to add last result with another column based on conditions

IMG_20230209_162602.jpg

 in this problem I need that needed column in power bi.. condition is in that type column if there is KT the seq no is print but there is no KT in type there are two conditions the mat and before mat is same then add needed last answer and quantity if two conditions are false just print 10;.... If you can't get my problem please see the Excel formula... I hope u can understand my problem.. and please help me with it....

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @ILANGO_10 ,

 

Here are the steps you can follow:

1. In Power Query -- Add Column – Index Column – From 1.

vyangliumsft_0-1676252795373.png

2. Create calculated column.

flag =
var _1=MAXX(FILTER(ALL('Table'),'Table'[Index]=EARLIER('Table'[Index])),[mat])
var _2=MAXX(FILTER(ALL('Table'),'Table'[Index]=EARLIER('Table'[Index])-1),[mat])
return
IF(
    'Table'[type]="KT",[seq no],
    IF(
        _1 <> _2,10,BLANK()))
needed =
var _index1=SUMX(FILTER(ALL('Table'),'Table'[Index]=EARLIER('Table'[Index])-1),[flag])
var _index2=SUMX(FILTER(ALL('Table'),'Table'[Index]=EARLIER('Table'[Index])),[quantity])
return
IF(
    [flag]=BLANK(),
_index1+_index2,[flag]
    )

3. Result:

vyangliumsft_1-1676252795374.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi  @ILANGO_10 ,

 

Here are the steps you can follow:

1. In Power Query -- Add Column – Index Column – From 1.

vyangliumsft_0-1676252795373.png

2. Create calculated column.

flag =
var _1=MAXX(FILTER(ALL('Table'),'Table'[Index]=EARLIER('Table'[Index])),[mat])
var _2=MAXX(FILTER(ALL('Table'),'Table'[Index]=EARLIER('Table'[Index])-1),[mat])
return
IF(
    'Table'[type]="KT",[seq no],
    IF(
        _1 <> _2,10,BLANK()))
needed =
var _index1=SUMX(FILTER(ALL('Table'),'Table'[Index]=EARLIER('Table'[Index])-1),[flag])
var _index2=SUMX(FILTER(ALL('Table'),'Table'[Index]=EARLIER('Table'[Index])),[quantity])
return
IF(
    [flag]=BLANK(),
_index1+_index2,[flag]
    )

3. Result:

vyangliumsft_1-1676252795374.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

lbendlin
Super User
Super User

Please provide sample data that covers your issue or question completely. A screenshot is not suitable.
https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-...
Please show the expected outcome based on the sample data you provided.

https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.