web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Automate / Office script: Yield n...
Power Automate
Unanswered

Office script: Yield not functioning properly when console.log added to same function

(0) ShareShare
ReportReport
Posted on by

There appears to be a bug in Office Scripts when using yield and console.log. Using a standard yield sample as a reference...

 

 

function* foo(index: number) {
 // console.log('uncommenting will cause the yield not to function properly')
 while (index < 2) {
 yield index;
 index++;
 }
}
function main(workbook: ExcelScript.Workbook) {
 const iterator = foo(0);
 console.log(iterator.next().value); // Expected output: 0
 console.log(iterator.next().value); // Expected output: 1
}

 

 

I expect to see:

uncommenting will cause the yield not to function properly
0
1

 

but instead I see:

uncommenting will cause the yield not to function properly
undefined
undefined


Is this a known issue? Any suggestions on a workaround besides not yielding?

Categories:
I have the same question (0)
  • lbendlin Profile Picture
    8,551 Super User 2026 Season 1 on at

    A flow treats an office script as a black box.  (sometimes) function parameter are provided, and an output is collected (usually a scalar value).  Any console printing activities inside the office script will likely go into the void as the Power Automate flow doesn't have a concept of "console" .

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Automate

#1
trice602 Profile Picture

trice602 237 Super User 2026 Season 1

#2
David_MA Profile Picture

David_MA 173 Super User 2026 Season 1

#3
Kalathiya Profile Picture

Kalathiya 95 Super User 2026 Season 1

Last 30 days Overall leaderboard