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
Hello. I'm tryiing to find
=SUMX(Filter(RELATEDTABLE('Work Orders1'),'Work Orders1'[WO Type]="Cashout"),'Work Orders1'[WO Type]="Cashout")
Solved! Go to Solution.
Hi, @ammartino44
From your formula, the data type of column 'Work Orders1'[WO Type] is text, while SUMX function evaluates to numbers or dates and cannot work with values of type String. Beside, the correct syntax of SUMX is:
SUMX(<table>,<expression>)
In your scenario, the formula might be like :
=SUMX(FILTER(RELATEDTABLE('Work Orders1'),'Work Orders1'[WO Type]="Cashout"),ColumnName)
Best regards,
Yuliana Gu
Hi, @ammartino44
From your formula, the data type of column 'Work Orders1'[WO Type] is text, while SUMX function evaluates to numbers or dates and cannot work with values of type String. Beside, the correct syntax of SUMX is:
SUMX(<table>,<expression>)
In your scenario, the formula might be like :
=SUMX(FILTER(RELATEDTABLE('Work Orders1'),'Work Orders1'[WO Type]="Cashout"),ColumnName)
Best regards,
Yuliana Gu
Gonna need more info on this one but... your formula does "look weird". The general form of SUMX is:
=SUMX(Table1, Expression)
It walks each row of the Table1, and evaluate the Expression... then adds the results together.
Your expression is : 'Work Orders1'[WO Type]="Cashout"
That seems like a weird expression!
Hi there
I know this might be a simple question, but have you created the relationship between your tables?
Also when using the related table, from memory you can only reference the RelatedTable on the many side of the relationship (NOTE: This is off the top of my head, it might be the other way around!)
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.
| User | Count |
|---|---|
| 44 | |
| 43 | |
| 38 | |
| 19 | |
| 15 |
| User | Count |
|---|---|
| 67 | |
| 66 | |
| 31 | |
| 28 | |
| 24 |