Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hello,
I need to create a MEASURE which sum all the Amounts lower than a certain date (like June 30, 2023) from TABLE 1, but dates in TABLE 1 are expressed in text, therefore I need to use the TABLE 2 where texts are associated with dates expressed as numbers.
Any help?
TABLE 1
Amounts
Trade Date (text format)
TABLE 2
Trade Date (text format)
Date (number format)
Year
Month
Days
Solved! Go to Solution.
Create a calculated column in Table 1 as:
My Date Number Format From Table 2 = RELATED ( 'Table 2'[Date] )
RELATED function (DAX) - DAX | Microsoft Learn
My Measure = CALCULATE ( SUM ( 'Table 1'[Amounts] ), 'Table 1'[My Date Number Format From Table 2] < 20230630 )
Proud to be a Super User! | |
My Measure = CALCULATE ( SUM ( 'Table 1'[Amounts] ), RELATED ( 'Table 2'[Date] < "08/30/2023" ) )
If that doesn't work, you may need to create a calculated column using the RELATED funtion to bring the Date into Table 1
Proud to be a Super User! | |
Can you please just show the formula for this second case (related in calculated column)?
Thank you so much
Create a calculated column in Table 1 as:
My Date Number Format From Table 2 = RELATED ( 'Table 2'[Date] )
RELATED function (DAX) - DAX | Microsoft Learn
My Measure = CALCULATE ( SUM ( 'Table 1'[Amounts] ), 'Table 1'[My Date Number Format From Table 2] < 20230630 )
Proud to be a Super User! | |
I just get this error when using the formulas above:
Ok just solved adding "Value" to the formula
Check out the April 2026 Power BI update to learn about new features.
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 |
|---|---|
| 45 | |
| 38 | |
| 34 | |
| 21 | |
| 17 |
| User | Count |
|---|---|
| 68 | |
| 64 | |
| 31 | |
| 26 | |
| 26 |