79640107

Date: 2025-05-27 08:44:36
Score: 0.5
Natty:
Report link

I have solved a similar request by cross blending the data source with itself and adding 2 fields for comparision:

  1. textDate (table 1)  = TODATE(date,"%Y-%m-%d","%Y-%m-%d")
    
  2. maxDate (table 2) = TODATE(MAX(date),"%Y-%m-%d","%Y-%m-%d")
    
    

    then to get the balance for the latest date:

  3. SUM(IF(textDate = maxDate, balance,0))
    

enter image description here
enter image description here
enter image description here
enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Whitelisted phrase (-2): I have solved
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Steve Gulloni