I want to boost a record's matching score if its value in field A is greater than a certain number.
For example, if the value in A is greater than 4, I would like to give it a boost of 5. I tried the following for bf
and bq
separately, but it did not work.
if(A>4,5,0)
How should I do it?