I have data that is in this wide format.
Dates        Rates   3-MoBill  9-MoBill   
01/31/2021   1.25    .90       2.45      
02/28/2021   2.50    .99       2.22
03/31/2021   2.00    1.03      2.79
Is there some way to use VBA or Power Query to get this stacked, so it essentially looks like this?
Rates     01/31/2021  1.25
Rates     02/28/2021  2.50
Rates     03/31/2021  2.00
3-MoBill  01/31/2021  .90
3-MoBill  02/28/2021  .99
3-MoBill  03/31/2021  1.03
9-MoBill  01/31/2021  2.45
9-MoBill  02/28/2021  2.22
9-MoBill  03/31/2021  2.79
I tried to pivot the data and I tried to transpose it, but neither thing worked, I guess because the final result is stacked in a long format.
