Rank: Administration
Groups: Administrators, Beta Testers Posts: 3,140  Location: Auburn, GA Thanks: 1043 times Was thanked: 511 time(s) in 425 post(s)
|
Hi Bill:
You need to do something like this:
TRANS(PWR)
or more realistically,
"MY TX PWR IS " + TRANS(PWR)
PWR is numeric, that's why it requires special treatment. TRANS() converts any data type to string.
You can get fancy:
IIF(PWR>0, "MY TX PWR IS " + TRANS(PWR), "")
This way the macro will send nothing if your power field is not filled in. Otherwise it would say
MY TX PWR IS 0
which is really really QRP hihi.
Tnx & 73,
Dennis WN4AZY
|