When I print a flextable
to a word document the cell alignment vertically is defaulted to centered, but I'm wondering if there's a way to make the text sit at the bottom of the cell.
I am aware of the flextable::align()
function, but it only applies to horizontal alignment. Does anyone know a way of changing the default vertical alignment?
Sample code:
read_docx() %>%
body_add_flextable(value = iris %>% regulartable()) %>%
print("Test.docx")