Transfer data from userform to sheet with the same format of table
Closed
abdelfatah_0230
Posts
73
Registration date
Thursday July 18, 2019
Status
Member
Last seen
July 23, 2022
-
Aug 28, 2019 at 11:34 AM
Blocked Profile - Aug 28, 2019 at 02:28 PM
Blocked Profile - Aug 28, 2019 at 02:28 PM
Related:
- Transfer data from invoice to worksheet automatically with vba
- Transfer data from one excel worksheet to another automatically - Guide
- Free fire transfer - Guide
- How to automatically transfer data between sheets in Excel - Guide
- Vba case like - Guide
- Download automatically while roaming - Guide
Aug 28, 2019 at 12:06 PM
Aug 28, 2019 at 12:07 PM
Updated on Aug 28, 2019 at 12:18 PM
for instance the data begin from row3 and contain blue color and the line is 14 size and bold here when i transfer data every time i would automatically insert the same format row
Aug 28, 2019 at 02:09 PM
when i transfer data it give me this
and what i would this
you can note the color in the item 2
i need adjusting the code above but i no know how
Updated on Aug 28, 2019 at 02:40 PM
Thefontsize=cells (x,1).font.size
Cells (x + 1,1).font.size = Thefontsize
If you need to test for bold, it would be a true false.
So, a bold font would be
Isitbold = cells (x,1).font.bold
Cells (x+1,1).font.bold = Isitbold