Forum Discussion
jaryszek
1 year agoSuper User
Tabular Editor with Power BI Desktop
Hi Guys, I am starting to learn Tabular Editor for power bi desktop changes and what i want is to just use C# script in order to outout "Hello World" in a console. I tried with: Console.WriteL...
- 1 year ago
https://docs.tabulareditor.com/te3/features/csharp-scripts.html#helper-methods
Try
Info("Hello, World!");or
https://docs.tabulareditor.com/te3/features/csharp-scripts.html#debugging-scripts
"Hello, World!".Output();
lbendlin
1 year agoSuper User
https://docs.tabulareditor.com/te3/features/csharp-scripts.html#helper-methods
Try
Info("Hello, World!");
or
https://docs.tabulareditor.com/te3/features/csharp-scripts.html#debugging-scripts
"Hello, World!".Output();
jaryszek
1 year agoSuper User
thank you!