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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

skip a row and rewrite the same values from 2nd row

Hello, I have a small question. I have a column X with 1 2 3 4 5 6 as numbers and i want a column to be added with Y  as the same as X but 1st row should be skipped in Y when comparing to X. Like the following one.

 

X      Y

1   

2      1

3      2

4      3

5      4 

6      5

        6

 

c

Can anyone please suggest me the solution with a DAX code or else anything?

1 ACCEPTED SOLUTION
v-luwang-msft
Community Support
Community Support

Hi @Anonymous ,

Test the below:

Table2 = DISTINCT(UNION( SELECTCOLUMNS('Table',"X",'Table'[X]),SELECTCOLUMNS('Table',"X",0)))
Y = IF (
        Table2[X]=0,
       CALCULATE(MAX(Table2[X]),ALL(Table2)),
IF (
    CALCULATE (
        MAX ( 'Table2'[x] ),
        FILTER ( ALL ( Table2 ), Table2[x] < EARLIER ( Table2[X] ) )
    ) = 0,
    BLANK (),
   
        CALCULATE (
            MAX ( 'Table2'[x] ),
            FILTER ( ALL ( Table2 ), Table2[x] < EARLIER ( Table2[X] ) )
        )
    )
)

vluwangmsft_0-1654845938415.png

 

 

Did I answer your question? Mark my post as a solution!


Best Regards

Lucien

View solution in original post

1 REPLY 1
v-luwang-msft
Community Support
Community Support

Hi @Anonymous ,

Test the below:

Table2 = DISTINCT(UNION( SELECTCOLUMNS('Table',"X",'Table'[X]),SELECTCOLUMNS('Table',"X",0)))
Y = IF (
        Table2[X]=0,
       CALCULATE(MAX(Table2[X]),ALL(Table2)),
IF (
    CALCULATE (
        MAX ( 'Table2'[x] ),
        FILTER ( ALL ( Table2 ), Table2[x] < EARLIER ( Table2[X] ) )
    ) = 0,
    BLANK (),
   
        CALCULATE (
            MAX ( 'Table2'[x] ),
            FILTER ( ALL ( Table2 ), Table2[x] < EARLIER ( Table2[X] ) )
        )
    )
)

vluwangmsft_0-1654845938415.png

 

 

Did I answer your question? Mark my post as a solution!


Best Regards

Lucien

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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