excel - VBA - How to fill the data to specific column by referred to another column on the same sheet -
how can automatically fill data specific column referring different source-column on same sheet?
example:
in source column numbers 1 10. how can convert e.g. having "1" displayed "one" in second column?
if want spell number in first column, then:-
- setup column headers , format area table (from ribbon -> "home" => "format table").
- using instructions microsoft support article (https://support.microsoft.com/en-us/kb/213360/en-us), add code article vba module in workbook.
- assuming first data cell "a2", add formula cell "b2":-
=spellnumber(a2). since table, formula propagated down entire column automatically, when adding new rows.
you need modify code ms support article, designed returning dollars & cents phrases.
Comments
Post a Comment