Join 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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hallo Team,
I am trying to add my add custom function to exsting dataset in M query. But I am getting Token in expected error.Any help is greaty appreciated..
------------------
let
#"sco ServiceNow_Outages" = let
Source = Sql.Database("Server", "Database"),
sco_ServiceNow_Outages = Source{[Schema="sco",Item="ServiceNow_Outages"]}[Data],
WHStartD=Number.From(WHStart), // Parameter convert to decimal
WHEndD=Number.From(WHEnd), // Parameter convert to decimal
#"Invoked Custom Function"= Table.AddColumn(sco_ServiceNow_Outages, "Sum of working hours", each fxSOWH(WHStartD, WHEndD, [begin], [end], Holiday))
in
#"Invoked Custom Function"
---------------------------------------
Regards
Solved! Go to Solution.
HI @Anonymous,
It seems like your query structure formula not completed, you can try to use the following query formula: (power query structure: start with let and end with 'in' and steps)
let
#"sco ServiceNow_Outages" =
let
Source = Sql.Database("Server", "Database"),
sco_ServiceNow_Outages = Source{[Schema="sco",Item="ServiceNow_Outages"]}[Data],
WHStartD=Number.From(WHStart), // Parameter convert to decimal
WHEndD=Number.From(WHEnd), // Parameter convert to decimal
#"Invoked Custom Function"= Table.AddColumn(sco_ServiceNow_Outages, "Sum of working hours", each fxSOWH(WHStartD, WHEndD, [begin], [end], Holiday))
in
in
#"sco ServiceNow_Outages"
Regards,
Xiaoxin Sheng
HI @Anonymous,
It seems like your query structure formula not completed, you can try to use the following query formula: (power query structure: start with let and end with 'in' and steps)
let
#"sco ServiceNow_Outages" =
let
Source = Sql.Database("Server", "Database"),
sco_ServiceNow_Outages = Source{[Schema="sco",Item="ServiceNow_Outages"]}[Data],
WHStartD=Number.From(WHStart), // Parameter convert to decimal
WHEndD=Number.From(WHEnd), // Parameter convert to decimal
#"Invoked Custom Function"= Table.AddColumn(sco_ServiceNow_Outages, "Sum of working hours", each fxSOWH(WHStartD, WHEndD, [begin], [end], Holiday))
in
in
#"sco ServiceNow_Outages"
Regards,
Xiaoxin Sheng
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 38 | |
| 38 | |
| 28 | |
| 27 |
| User | Count |
|---|---|
| 124 | |
| 88 | |
| 73 | |
| 66 | |
| 65 |