herbertioz
Registered User.
- Local time
- Today, 15:43
- Joined
- Nov 6, 2009
- Messages
- 66
I need some help on this.
I have a Sql here:
The idea is to have a start number like 10000 and using the sum to sum antallpips. For example like this:
10000+The first number=Calc 1
Calc 1+ The second number= Calc 2
and so on....
Can someone help?
Thanks in advance
I have a Sql here:
Code:
SELECT DISTINCTROW trades.ID, Sum(trades.AntallPips) AS [Sum Av AntallPips]
FROM trades
GROUP BY trades.ID;
The idea is to have a start number like 10000 and using the sum to sum antallpips. For example like this:
10000+The first number=Calc 1
Calc 1+ The second number= Calc 2
and so on....
Can someone help?