excel - Microsoft PowerApps & Word Mail Merge Image manipulation -


i developed application microsoft powerapps after filling form required sign (using pen input object).

all data stored in excel file, , signature stored .png file in folder automatically, , relative path stored on proper excel table field.

all data on excel table meant fill word document using mail merge. signature included in word document using includepicture function.

so far except need use mobile phone's full screen in upright position (actually people signing in horizontal have more space) gather signature , rotate 90 degrees make "understandabel/readable" in word document.

i have considered vba macro on word could't figure out if powerapps make such manipulation.

so far have macro (some parts gathered across web, intend no credits)

public sub imgrotate2()  dim ilshp inlineshape  dim shp shape   set ilshp = selection.inlineshapes(1)  set shp = ilshp.converttoshape  shp.incrementrotation 90  end sub 

in function obliged select image can make rotation.

what is, after conclude mail merge , select option of editing individual letters macro selects signatures (placed on exct same placeon document) , rotates them without need of selecting them.

i cannot select images on document have logos , other images don't want see rotated, placed in signature spot.

any help?

thanks


Comments

Popular posts from this blog

What is happening when Matlab is starting a "parallel pool"? -

angular - DownloadURL return null in below code -

php - Cannot override Laravel Spark authentication with own implementation -