Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
I am troubleshooting why my code doesnt work and I notice this:
If i put > 40
doesnt work!!!
I need to write > 41 to filter out those "40" , why is this??
This is the source from sql server (it adds to 40, not more!)
Solved! Go to Solution.
It's possible that floating-point math is making it very slightly larger than 40. To check you can try rounding [summ] before comparison.
Try writing this instead to round to two decimal places:
ROUND ( [summ], 2 ) > 40
It's possible that floating-point math is making it very slightly larger than 40. To check you can try rounding [summ] before comparison.
Try writing this instead to round to two decimal places:
ROUND ( [summ], 2 ) > 40
User | Count |
---|---|
12 | |
12 | |
8 | |
8 | |
6 |
User | Count |
---|---|
27 | |
19 | |
14 | |
11 | |
7 |