Questions tagged [custom-function]

DO NOT USE THIS TAG ALONE. Unlike built in functions where the functions are designed by the product designers for mass use, Custom functions are functions that are custom designed for only a subset of end users. Use for questions relating to such functions along with the product in question(eg [sql], [google-sheets],[excel]).

545 questions
-2
votes
1 answer

Google sheets custom function data disappears when viewing site as html after 20 minutes

I am trying to understand why a custom google sheet script can initially pull in JSON data when I have the sheet open, as defined in cell(A1). 20 minutes after closing the google sheet in the browser, I access the published html page of that sheet…
Putnik
  • 45
  • 2
  • 9
-2
votes
1 answer

Google Apps Script - Convert cell to SHA256 within an Array Formula

I have a simple script written to hash a cell, however it doesn't work within and array formula, and I am having a hard time figure out how to add that functionality. function SHA256 (input) { var rawHash =…
-4
votes
1 answer

WordPress Custom php line code

I would like to add a small line of php to a post that already exists in WordPress im aded the code but after im publish it the code automatically convert to comment : this that im add : and this what i get :
-7
votes
1 answer

Can any one please help me what wrong with this code?

#include #include char *namefunct(void); int main(int argc, char *argv[]) { printf("Hello, %s!!!\n", namefunct()); //namefunct is not returning tmp_name } char *namefunct(void) { char *name = malloc(sizeof(char) *…
1 2 3
36
37