While Adding the Row to the xlsx File I want to add it as Rich Text
Avadh Dobaria
0
Reputation points
Content-type: application/json
{
"values" : [["Hello", "100"],["1/1/2016", null]],
"formulas" : [[null, null], [null, "=B1*2"]],
"numberFormat" : [[null,null], ["m-ddd", null]]
}
**While Using the Update Range Api If I want to add Value as Bold or Italic , So How would I do that Is there any api Available for it ?
For Example:
**
{
"values" : [["Hello", "100"],["1/1/2016", null]],
"formulas" : [[null, null], [null, "=B1*2"]],
"numberFormat" : [[null,null], ["m-ddd", null]]
}
For this JSON paylaod I want to add Hello as bold and 100 as italic or any other font style
Sign in to answer