Unfortunately, I see many errors.
1. Have you assigned reference cells with the CBR and DESA titles? If not, in the equation you need to reference cell locations with the values for those two inputs.
2. The correct format for logarithms in excel is LOG(reference cell,base) and if you you want a log to the base 10 then the correct format is LOG10(reference cell)
Note: To find excel all correct function formats use the (fx) button at the front of the formula entry line above the spreadsheet grid
3. An (*) multiplier operator is required between the formula elements to be multiplied i.e. = max(100,.475*(219-211*LOG10(CBR ref cell)+58*LOG10(CBR ref cell*2))*LOG10(14*DESA ref cell))
4. If you intend for your log(CBR)2 to mean log(CBR) squared then the correct operator is log( )^2 rather than log( )*2
5. One important note on the above enclosing brackets, excel only recognises ( ) parentheses for formula enclosures so the [] and {} enclosures you used must be replaced by stacked parentheses as shown in 3. above.