Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Preparing for a certification exam? Ask exam experts all your questions on May 15th. Register now.
I have a table as the following.
Column1 Column2
A 1000
B 800
B 500
B 300
I would like to create one more column
Column1 Column2 Column3
A 1000 200
B 800 300
B 500 200
B 300 300
How could I make that?
Thanks.
Solved! Go to Solution.
you can try to create an index column in PQ
then create a column
Column =
VAR _next=maxx(FILTER('Table','Table'[Index]=EARLIER('Table'[Index])+1),'Table'[Column2])
return 'Table'[Column2]-_next
Proud to be a Super User!
Hi,
I assume the order is by column 2.
Please check the below picture and the attached pbix file.
Column3 CC =
VAR _number =
MAXX (
FILTER ( Data, Data[Column2] < EARLIER ( Data[Column2] ) ),
Data[Column2]
)
RETURN
IF ( NOT ISBLANK ( _number ), Data[Column2] - _number, Data[Column2] )
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Hi,
I assume the order is by column 2.
Please check the below picture and the attached pbix file.
Column3 CC =
VAR _number =
MAXX (
FILTER ( Data, Data[Column2] < EARLIER ( Data[Column2] ) ),
Data[Column2]
)
RETURN
IF ( NOT ISBLANK ( _number ), Data[Column2] - _number, Data[Column2] )
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
resolved, perfect!
you can try to create an index column in PQ
then create a column
Column =
VAR _next=maxx(FILTER('Table','Table'[Index]=EARLIER('Table'[Index])+1),'Table'[Column2])
return 'Table'[Column2]-_next
Proud to be a Super User!
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
78 | |
76 | |
69 | |
49 | |
42 |
User | Count |
---|---|
56 | |
47 | |
33 | |
32 | |
28 |