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.
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....
Solved! Go to Solution.
Hi @ILANGO_10 ,
Here are the steps you can follow:
1. In Power Query -- Add Column – Index Column – From 1.
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:
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
Hi @ILANGO_10 ,
Here are the steps you can follow:
1. In Power Query -- Add Column – Index Column – From 1.
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:
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
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
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 |