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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!