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
PrivateAnalytic
Helper IV
Helper IV

Creating a Current Month Column in a Report

Hello all!

 

I am looking to create a Month over Month column in my Report. I am looking it to be where the most recent month available is 1, and month before that is 2, and the month before that one is 3, and so on and so forth.

1 ACCEPTED SOLUTION

Hi @PrivateAnalytic ,

 

Maybe you can try this expression:

Column =
VAR _DIFF =
    DATEDIFF (
        DATE ( 2000 + VALUE ( RIGHT ( [READY_DATE], 2 ) ), VALUE ( LEFT ( [READY_DATE], 2 ) ), 1 ),
        TODAY (),
        MONTH
    )
RETURN
    IF ( _DIFF > 12, 0, _DIFF )

 

Result:

vchenwuzmsft_0-1656677997415.png

 

Pbix in the end you can refer.

Best Regards

Community Support Team _ chenwu zhu

 

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

4 REPLIES 4
croberts21
Responsive Resident
Responsive Resident

Can you give us an example table to show us what it would look like? In your reply here, if you click the "Code" button first, then insert your table there, I think the output will be preformatted fixed width text which would be easier to read. 

Hello! @croberts21  

 

So I manually input a column to help specify the month and year of a record in the table. Example: "0522" occurred in May of 2022. However, "0100" does not have a date to it. I was looking to create a dynamic column to help signifiy the most recent month we have in the table. So "0522" would ideally be 1 or -1, and the month before that be -2 or 2. And so on and so fourth

PrivateAnalytic_0-1656507606776.png

 

Hi @PrivateAnalytic ,

 

Maybe you can try this expression:

Column =
VAR _DIFF =
    DATEDIFF (
        DATE ( 2000 + VALUE ( RIGHT ( [READY_DATE], 2 ) ), VALUE ( LEFT ( [READY_DATE], 2 ) ), 1 ),
        TODAY (),
        MONTH
    )
RETURN
    IF ( _DIFF > 12, 0, _DIFF )

 

Result:

vchenwuzmsft_0-1656677997415.png

 

Pbix in the end you can refer.

Best Regards

Community Support Team _ chenwu zhu

 

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

This was exactly what I was looking for! Thank you for the advice!

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.