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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Today funtion

Hi

 

Can someone please tell me what the today part do in this colum formula: 

 

On time order =
IF (
    'Orders'[CANTIDADFACTURA] <> BLANK (),
    IF (
        'Orders'[CANTIDAD PEDIDO] <= 'Orders'[CANTIDADFACTURA],
        "Sí",
        "No"
    ),
    IF (
        'Orders'[VALOR PEDIDO] = 0,
        BLANK (),
        IF (
            'Orders'[FECHAHORAENTREGA] TODAY (),
            "No",
            BLANK ()
        )
    )
)

 

 

The colums: 

[CANTIDADFACTURA] : Quantity of billed itmes

[CANTIDAD PEDIDO]: Quantity of order itmes

[VALOR PEDIDO]: Quantity or order items in dollars

[FECHAHORAENTREGA]: Date and hour of delivery

 

Thanks!

1 ACCEPTED SOLUTION
Phil_Seamark
Employee
Employee

Hi @Anonymous

 

The DAX function TODAY, simply returns the current date.  For example, this might be the 28th of May, 2018.  This is dynamic so tomorrow it will be the 29th May, 2018.

 

In your calculation, the IF function is just testing each value in your 'Orders'[FECHAHORAENTREGA] column to see if it happens to be in the past, or in the future.


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

View solution in original post

1 REPLY 1
Phil_Seamark
Employee
Employee

Hi @Anonymous

 

The DAX function TODAY, simply returns the current date.  For example, this might be the 28th of May, 2018.  This is dynamic so tomorrow it will be the 29th May, 2018.

 

In your calculation, the IF function is just testing each value in your 'Orders'[FECHAHORAENTREGA] column to see if it happens to be in the past, or in the future.


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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