Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Friends, I try to call one function in to the other kind of nested.
M-Code:
let
ADD = (x as any) => let s2 = x+1
in
s2,
SUB = let s33 = ADD -1
in
s33
in
SUB
ERROR:
Thanks in advance
@Greg_Deckler @Anonymous Many thanks both of you. The below code is working fine to me
let
ADD = (x as any) => let s2 = x+4
in
s2,
SUB =(x as any) => let s33 = ADD(x) -3
in
s33
in
SUB
@msksenthil I would still do it as 2 functions:
let
ADD = (x as any) => let s2 = x+1
in
s2
in
ADD
let
SUB = (x as any) => let s33 = ADD(x)-1
in
s33
in
SUB
You need to complete your ADD function. After you have in s2 , you have to write in ADD. right now, ADD is unevaluated function -1.
@msksenthil Perhaps I'm mistaken but don't you want 2 separate functions:
let
ADD = (x as any) => let s2 = x+1
in
s2
in
ADD
let
SUB = (x as any) => let s33 = x+1
in
s33
in
SUB
Nope, I try to use the result of the previous 'let' in the following 'let'
Instead of "in s2", try "in s2 in ADD".
--Nate
Sorry, I didn't get you
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Check out the July 2026 Power BI update to learn about new features.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.