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

New table using variable and custom columns

Hello everyone,

I'm trying to create a new table using a viariable (easy part) with custom columns (tough part)

 

1st step, create a calendar table, it works fine :

a_calendrier_global =
    VAR _mon_calendrier_ =
            CALENDAR(FIRSTDATE(t_intervention[int_date_programmation].[Date])
                    ;LASTDATE(t_intervention[int_date_programmation].[Date]))
 
RETURN
        _mon_calendrier_


2nd step, I know want to add a custom column, so I tried :

a_calendrier_global =
    VAR _mon_calendrier_ =
            CALENDAR(FIRSTDATE(t_intervention[int_date_programmation].[Date])
                    ;LASTDATE(t_intervention[int_date_programmation].[Date]))

RETURN
        SELECTCOLUMNS(
            _mon_calendrier_
            ; "date"; [Date]
            ; "test"; "Hello world !"
        )

but it really doesn't works, I'm having an error (in english something like La colonne "date" dans la table "a_calendrier_global" continent des liaisons non valides), I also even tried by using SUMMARIZE(_mon_calendrier;[Date]), same result

What have I missed or missunderstood ?

Thanks for yoru time.

 

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

Hi @Anonymous ,

 

 

Sorry for that, but we cannot reproduce this issue on my side with your shared DAX code,

We created a sample “t_intervention” table, and then create two calculated tables with your code,  we got the  result as following,

 

31.png32.png

 

 

We can also use ADDCOLUMNS function to add a column to tables, such as following:

a_calendrier_global =
VAR _mon_calendrier_ =
    CALENDAR (
        FIRSTDATE ( t_intervention[int_date_programmation].[Date] );
        LASTDATE ( t_intervention[int_date_programmation].[Date] )
    )
RETURN
ADDCOLUMNS ( _mon_calendrier_; "test"; "Hello world !" )

 

 

Could you please reproduce this issue with the latest version of Power BI Desktop ?  If  it does not contain any confidential information, could you please provided  a screenshot which contains error information.

 

BTW, pbix as attached.


Best regards,

 

Community Support Team _ Dong Li
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

2 REPLIES 2
v-lid-msft
Community Support
Community Support

Hi @Anonymous ,

 

 

Sorry for that, but we cannot reproduce this issue on my side with your shared DAX code,

We created a sample “t_intervention” table, and then create two calculated tables with your code,  we got the  result as following,

 

31.png32.png

 

 

We can also use ADDCOLUMNS function to add a column to tables, such as following:

a_calendrier_global =
VAR _mon_calendrier_ =
    CALENDAR (
        FIRSTDATE ( t_intervention[int_date_programmation].[Date] );
        LASTDATE ( t_intervention[int_date_programmation].[Date] )
    )
RETURN
ADDCOLUMNS ( _mon_calendrier_; "test"; "Hello world !" )

 

 

Could you please reproduce this issue with the latest version of Power BI Desktop ?  If  it does not contain any confidential information, could you please provided  a screenshot which contains error information.

 

BTW, pbix as attached.


Best regards,

 

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

It now works... I don't know what happened, sorry for the post...
But thanks for your time !

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.