I have a textfile "engdata.txt" that i use in excel vba to take the values from cells and throw them into this CSV file.
Open "c:\path\engdata.txt" for append as #1
Write #1 Range("b8"


Close #1
How can I change the code so that I can test the variable B8 against the Range("B8"

Your comments are greatly appreciated...