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.WriteLine("Hello, World!");
It showed that query was sucessfully run but there is nowhere output...
How to see it in tabuler editor 2.0 ?
Best.
Jacek
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();
2 Replies
- lbendlinSuper 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();
- jaryszekSuper User
thank you!