Forum Discussion
Calculated table
Anonymous - I have measures but not atrributes as Budget forecast and ly . How can i do that?
sgsukumarancan you tell me what you want to do?
I can't understand what is the problem :smileysad:
- sgsukumaran7 years agoResolver II
Anonymous. I have them as individual measures but they are grouped as budget or forecast
- v-piga-msft7 years agoResident Rockstar
Hi sgsukumaran,
If it is convenient, please share a dummy pbix file which can reproduce the scenario and your desired output, so that we can help further investigate on it? You can upload it to OneDrive or Dropbox and post the link here. Do mask sensitive data before uploading.)
Best Regards,
Cherry
- sgsukumaran7 years agoResolver II
I figured this out. I ended up creating individual measures and bucketed them using the following dax.
=SELECTCOLUMNS(
{("Budget", "eComm","YTD", [Revenue $'s (eComm) YTD], [eComm Budget YTD Var %])
}
, "Metric", [Value1]
, "Segment", [Value2]
, "Period", [Value3]
, "Dollars", [Value4]
, "Variance", [Value5]
)