Help with expression builder issue

trizzytt

Registered User.
Local time
Today, 06:06
Joined
Sep 27, 2017
Messages
19
Currently trying to do a simple expression where it adds up all fields.
It works, but if i leave [amount 5] blank for example, it wont calculate everything?

How can i get this to work, even if i wanted to keep some fields blank, as they may not need to be used sometimes.
 
Each distinct data point in a relational database should occupy its own row. If you find yourself needing to add together multiple fields in the same row, you have probably violated the above rule, and you probably have a table design problem.

For more info on how to structure data for storage in a relational database, google 'database normalization'

For more help on this site you may want to describe your particular problem in greater detail, the payoff being that your math will likely become far simpler if you structure your data correctly, and leverage the power of SQL to do your calculations, and avoid using the expression builder on a single row.

hth
Mark
 
Each distinct data point in a relational database should occupy its own row. If you find yourself needing to add together multiple fields in the same row, you have probably violated the above rule, and you probably have a table design problem.

For more info on how to structure data for storage in a relational database, google 'database normalization'

For more help on this site you may want to describe your particular problem in greater detail, the payoff being that your math will likely become far simpler if you structure your data correctly, and leverage the power of SQL to do your calculations, and avoid using the expression builder on a single row.

hth
Mark

Ah i see, so now i set it so all values show £0.00 unless edited it works.

Many thanks!!
 

Users who are viewing this thread

Back
Top Bottom