Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hei, can't figure out, how to make the call syncronous.
Any idea ?
this.storage.get(this.updateCountName).then(count => { this.updateCount = +count; }) .catch(() => { this.updateCount = 0; this.storage.set(this.updateCountName, this.updateCount.toString()); }); ...
Thanks in advance
Solved! Go to Solution.
What is this.storage? If it returns a Promise you won't be able to make it synchronous.
You can try using async/await that make code cleaner.
Ignat Vilesov,
Software Engineer
Microsoft Power BI Custom Visuals
What is this.storage? If it returns a Promise you won't be able to make it synchronous.
You can try using async/await that make code cleaner.
Ignat Vilesov,
Software Engineer
Microsoft Power BI Custom Visuals
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.