I want to add months to a date (YYYYMMDD), which is a string currently '20190101'.
to add months i use: addmonths(date('20190101'),12)
which would give me "2020-01-01" as a date
But I only want "202001" as my final output. I tried doing the below but doesn't seem to work!