Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
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.
Solved! Go to Solution.
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,
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,
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,
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,
It now works... I don't know what happened, sorry for the post...
But thanks for your time !
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 55 | |
| 35 | |
| 31 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 75 | |
| 72 | |
| 38 | |
| 35 | |
| 25 |