Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
I'm trying to add this line via the advanced editor:
#"Max" = Table.AddColumn(#"Removed Columns3", "CustomAA", each List.Max(#"Removed Columns3"[2/28/2019]))
I get an error for "invalid identifier" which references the beggining of the 2/28/2019 column. If I change the column to a column beginning with a letter the line above works. How can I make it work for a column beginning with a letter?
Thanks
Solved! Go to Solution.
Hi there column names should encapsulate it with a #"Column Name"
#"Max" = Table.AddColumn(#"Removed Columns3", "CustomAA", each List.Max(#"Removed Columns3"[#"2/28/2019"]))
Hi there column names should encapsulate it with a #"Column Name"
#"Max" = Table.AddColumn(#"Removed Columns3", "CustomAA", each List.Max(#"Removed Columns3"[#"2/28/2019"]))
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 77 | |
| 37 | |
| 31 | |
| 29 | |
| 26 |