Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
I have a table that shows the sales of a fiscal year, divided into months on the basis of orders. This turnover is then subdivided again on customer groups and overall result.
Now I want to replace a column of this table, let's say february, with values from an additional file, without having to edit the base file in the power query.
i.e. total sales in 12 monthly columns, where 11 months come from file 1 and 1 month from file 2. the whole thing should take place in the visualization.
Hi @T_JF2022 ,
Is there a relationship between the two tables? Please describe your model in details and paste some sample data.
https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You could use an IF statement I think. So if you have a Calendar / Date table that is connected to both 'Table 1' (from file 1) and 'Table 2' in your data model. In the Calendar table would be a Month column that contains either the name of the month or the month number - whatever you see fit. Then the DAX you could apply to carry out this calculation would be something like:
Total Sales =
IF (
'Calendar'[Month] = "Feb",
SUM ( 'Table 2'[Sales] ),
SUM ( 'Table 1'[Sales] )
)
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.
Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.
| User | Count |
|---|---|
| 47 | |
| 44 | |
| 40 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 70 | |
| 68 | |
| 32 | |
| 27 | |
| 25 |