+7

Access to HEBCAL data from within google sheets

David Kra 5 years ago updated by Adam Simon 4 months ago 2

This is a tip, not a question nor complaint.

It is possible to access Hebcal data from within google sheets through the XML API.

For example,

=IMPORTXML("https://www.hebcal.com/converter/?cfg=xml&hy=5780&hm=Adar&hd=25&h2g=1","//hebcal/gregorian/@month") 
=IMPORTXML("https://www.hebcal.com/converter/?cfg=xml&hy=5780&hm=Adar&hd=25&h2g=1","//hebcal/gregorian/@day") 

The result becomes the value of the cell.

You can get multiple result values in one query. The the first result value goes into the cell with the formula, and others go below it, into cells which must be empty, with neither a formula nor a value already in them. This makes it unfeasible for one query to fill in multiple columns in a table.

=IMPORTXML("https://www.hebcal.com/converter/?cfg=xml&hy=5780&hm=Adar&hd=25&h2g=1","//hebcal/gregorian/@month|//hebcal/gregorian/@day") 

Do not overburden hebcal.com with a blast of hundreds of queries when the sheet loads or recalculates. Throttle usage by putting the query into an IF so that it only fires if some condition is TRUE.

For example:

=IF($AN8,IMPORTXML("https://www.hebcal.com/converter/?cfg=xml&h2g=1&hy="&AO8&"&hm="&AP8&"&hd="&AQ8,"//hebcal/gregorian/@day")," ")

where

AN8 is TRUE or FALSE

AO8 is the Jewish year

AP8 is the Jewish month

AQ8 is the Jewish day of the month


Thank you to the people at Hebcal. Mo'adim L'simchah.

+2

Using this formula, you can convert the Gregorian date in a given cell to a Hebrew date

=IMPORTXML(CONCATENATE("https://www.hebcal.com/converter?cfg=xml&date=",TEXT(A2, "yyyy-mm-dd"),"&g2h=1&strict=1"), "//hebrew/@str")

+1

You can use TRANSPOSE function to put the output in the same row.