Funky - do you know how to code an Excel spreadsheet? If not, take some time to learn - search on 'formulas' and go through the tutorial. Then it's pretty simple. I assume others probably have better ways, but I've coded 8 different 'model' lines that can do the calculations for the 8 possible different situations for scalping or siding/middling. When a situation arises, I copy the model line down, then plop in the numbers (odds on both sides of the bet as well as one of the bet amounts) to get the proper second bet to place. The formulas are all designed to either maximize your profit (scalping) or minimize your cost (siding,middling).
Here's one of the model lines, used to calculate a scalp as in the example in this topic - a cell consists of the intersection of a row and column on the spreadsheet, and in this example the model line is located at row 21. This model line makes you enter the amount you're betting on the favorite line (the negative line) - I have another which makes you put in the dog amount ... do NOT enter negative signs with ANY of these values! You may have to change the column attribute to a 2 decimal number for precision, but that's easy ..
Row 21 on the spreadsheet:
col A - amount bet on the favorite
col B - dog odds (enter '605')
col C - favorite odds (enter '435')
col D - left blank for spacing
col E - col A + col F (total amt bet for reference)
col F - calculated amount to bet on the dog side ... formula on next line entered with '=':
= (A21 + (A21 / (C21/100))) /( (B21/100) + 1)
col I - dog win amount ... formula on next line entered with '=':
=F21*(B21/100)
col J - favorite win amount ... formula on next line entered with '=':
=A21/(C21/100)
col K - payout amount for a dog win (includes amount bet and amount won) ... formula on next line entered with '=':
=F21+I21
col L - payout amount for a favorite win (includes amount bet and amount won) ... formula on next line entered with '=':
=G21+J21
col M - maximum profit, based on the dog winning - this was arbitrary, since the profit is identical or almost exactly so when the favorite wins, and I was too lazy to calculate the average of the two which is certainly easy ... formula on next line entered with '=':
=((B21/100)*F21)-A21
If you enter this on some row other than 21, just make sure to change all references to 21 to the row you're entering it on.
Anyhow, once you've coded it, save your spreadsheet and then copy the model row to another row - never modify the model row unless you're doing it to change a calculation. That's because if you overtype a number in a cell with a calculation, the calculation usually no longer works, so in the example above, don't overtype the amount to bet on the dog in column F!