Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreThe FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now
I know that direct query mode has limitations in modeling colums and data in general, but maybe you can help me to overcome this limitations in a particular case.
This is the data type format i have
and i would like to work on a report analyzing the data aggregated by years and months, but i can't duplicate, split, transform the data column in any way because of the direct query mode. So the result is like this, data not aggregated at all.
Do you have any suggestion about how i can manage this problem?
thank you if someone can help me.
You can try to add calculated columns even in DirectQuery mode. On the right side in the Fields panel right-click on the table name and choose New column. Then you can simply use DAX (with several limitations) to create all columns needed, e.g.:
Year = YEAR(YourTable[Posting Date]) Month Number = MONTH(YourTable[Posting Date])
Thank you for yout help pawelpo,
i've tried to follow your instructions but i got an error message of the same type:
"this operation generates a query that is not supported in Direct Query mode."
Hi @Botturovic,
In my test, I was able to create calculated columns to generate Year column and month column. And I was able to add these two calculated columns into Axis section of the bar chart.
Year = YEAR(test04[Date])
Month = Month(test04[Date])
Besides, please try the Bin function to see whether it works for you.
Best regards,
Yuliana Gu
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 40 | |
| 38 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 69 | |
| 68 | |
| 34 | |
| 33 | |
| 30 |