I have a tabular cube that I working on. I would like to get distinct values from "Column1" and then get two additional columns(to be created afresh) as static text one as "All" and other as "2020Q4".
Output would look like:
Column1 | Column2 | Column3 |
---|---|---|
AA | All | 2020Q4 |
BB | All | 2020Q4 |
CC | All | 2020Q4 |
DD | All | 2020Q4 |
EE | All | 2020Q4 |
Any help is appreciated. So far I am able to get distinct but unable to get associated static values.