
- #Chem draw excel registration
- #Chem draw excel code
- #Chem draw excel password
- #Chem draw excel professional
#Chem draw excel password
You must first set a password before being able to access the download. In a few minutes, you will receive an email from Perkin Elmer with a download and activation link. Only emails ending with “crimson.ua.edu” or “ua.edu” will be accepted. Please contact the IT Service Desk if your UA email address is not accepted.
#Chem draw excel registration
To obtain version 17, the latest version, click the link “click here to register using your Alabama email address.” Complete the new user registration by filling out the form, and inserting UA’s Account ID, and then click register. Visit the CambridgeSoft Website, and scroll down to The University of Alabama.
#Chem draw excel professional
I know that I could get him to just click save each time before really looking at the results, but that is just a band aid to the problem.How to Obtain ChemDraw Professional Create a CambridgeSoft Account I can also just click the top cell after filling in the formula and then drag the bottom right of the cell downward and it will do the same of filling in the correct formula, but have the incorrect value. Mine has Office 2010, so I think there might be an issue with the file itself.Īlso, not just copy and paste. I am trying this on his workstation and mine. When I click save, it will change the display value to 80. Right click A3, Copy, right click B3, paste When copying a cell with a formula in it of "=D6+C6" and pasting it into the next cell down, it will display the same value in the cell as the calculated value from above, but has the correct formula displayed in the formula bar of "=D7+C7". I have a co-worker's file that he is having trouble with. That's it! Fairly simple stuff, yet very difficult to find in the beginning! '(note the double quotation surrounding single quotation marks above)

Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _Īpplication.Run "'CFXL.xla'!CFxlDoConvertSMILES" '(converts smiles to a structure)Īpplication.Run "'CFXL.xla'!CFxlDoShowPicture" '(displays structure as picture) Range("n20").Select '(selects & copies the smiles string from a lookup) Range("f13").Select '(selects the current structure)Īpplication.Run "ProcessDeleteKeystroke" '(deletes the current structure) In this particular case, the LOOKUP value resides in cell N20, and the structure is displayed in cell F13. Lastly, I wanted to be able to refresh the structure with a new structure at any time using the same macro.

The smiles string was referenced as a LOOKUP from a master template database, in which 100's of smiles strings had been previously entered.
#Chem draw excel code
To edit a structure in chemdraw: AddOrEditMoleculeĪs far as my code was concerned, what I wanted to do was to generate (and display) a chemdraw structure from its corresponding smiles string. To display the structure as a pictu CFxlDoShowPictureģ. To convert a smiles string into a structu CFxlDoConvertSMILESĢ. I used this great tool to figure it out:ġ. In order to reference the various add-in applications, one needs to know the individual application names.

(sendkeys method did work, but was unreliable). I wanted to create a macro in which I could call on the various functions found in the add-in commandbar without having to resort to using sendkeys.

For anyone who uses this add-in, you probably have noticed that cambridgesoft offer pretty poor technical advice on its use, and information from excel forums appears to be rather limited. I thought it was my turn to contribute by posting some code I developed in relation to the chemdraw add-in for excel. Over the last year or so, I have received some valuable help from various members.
