Posts by Bruno Filipe • 31 points
3 posts
-
0
votes2
answers1070
viewsA: Format SQL data inside Power BI
You can use the DAX function Format or you can change the data type of the Menu Modelling > Data Type > Format.
powerbianswered Bruno Filipe 31 -
1
votes5
answers6237
viewsA: Request ajax is not working
When you set a value for dataType, the chosen type should be used both for value sent by ajax in the "date" field and for the value returned by php, which in your case is json. Try to do it this…
-
2
votes3
answers2642
viewsA: Receive array and record multiple lines in Mysql
Concatenating all values in a string should not be done because it can exceed the maximum string size, the best way would be to create a loop and generate a INSERT at a time or use the class PHP…