Forum Discussion
Anonymous
5 years agoNot applicable
Bootstrapping - Statistical Method
Hi, I've got a very large set of data (let's say it's about attendence at schools during covid), which I've done some analysis on to determine rates of change of the attendence of students from day t...
- Anonymous5 years ago
Hi Anonymous ,
Sorry for that DAX does not currently have the function to repeat a formula in a loop. You can consider using other statistical software such as SAS, SPSS.
Hope that's what you were looking for.
Best Regards,
Yuna
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
lbendlin
5 years agoSuper User
DAX has a concept of table variables, accessible via ADDCOLUMNS or SELECTCOLUMNS. You can use these to create temporary tables for your computation, and then return the results as scalars.
Since this is statistics you can also consider running R or python scripts instead of plain DAX.