Forum Discussion
bmccabe362
Jan 16, 2020Copper Contributor
Number format
As a Realtor I have, over the years, downloaded bulk MLS data for offline processing in Excel for the benefit of my buyer and seller clients. There was never a problem until the MLS service (Garden S...
PeterBartholomew1
Jan 18, 2020Silver Contributor
Since your data format appears so consistent, you could also use the MID function to 'top and tail' the text. I use Names to reference data so I would define 'rentPrice' to refer to
= VALUE( MID( input, 2, LEN(input)-2 ) )
That tucks the boring junk out of sight and the formula
= SUM( rentPrice )
is clear in terms of its business intent.