Luke Walker on 07 Jun 2019 21:55:17
A DAX pipe operator would allow function outputs to be piped to another function rather than nesting or written to a variable. This would streamline code writing.
E.g.:
SUMMARIZECOLUMNS () %>% ADDCOLUMNS () %>% FILTER ()
rather than:
FILTER(ADDCOLUMNS(SUMMARIZECOLUMNS () ))
Administrator on 09 Dec 2020 01:08:00
Agree with Kenneth below.