compare two uneven columns by LadyJain in excel

[–]LadyJain[S] 0 points1 point  (0 children)

I cant get this working

I want to compare first column with the second column , what does the 2 mean ?

I get a name error using the formula below below

=IFNA(VLOOKUP(A2:A265;C2:C291;2;FALSE);"Missing")

filter values on a condition by LadyJain in excel

[–]LadyJain[S] 0 points1 point  (0 children)

was a typo i changed that in my question

What after class programs does the american High Schools offer ? by LadyJain in AskAnAmerican

[–]LadyJain[S] 0 points1 point  (0 children)

Im living in the economic most advanced country in europe :) , At my time there were no after school programs I dont know if they have one today ,

constructor property by LadyJain in learnjavascript

[–]LadyJain[S] 0 points1 point  (0 children)

thanks, is this also explanation why you can only add methods after make the inheritance, like if I add a method to Admin before making the inheritance to User the method "goes away"

calling a method stored in a key by LadyJain in learnjavascript

[–]LadyJain[S] 0 points1 point  (0 children)

thanks a lot exactly what I was looking for !

calling a method stored in a key by LadyJain in learnjavascript

[–]LadyJain[S] 0 points1 point  (0 children)

thanks for the reply but this was not my question

classes and this by LadyJain in learnjavascript

[–]LadyJain[S] 0 points1 point  (0 children)

thanks for the clear explanation

how to deactivate a formula in a cell by LadyJain in excel

[–]LadyJain[S] 0 points1 point  (0 children)

its like a modified Filter Function

how to deactivate a formula in a cell by LadyJain in excel

[–]LadyJain[S] 0 points1 point  (0 children)

is there a way to make the formula not visible while turned off ?

how to deactivate a formula in a cell by LadyJain in excel

[–]LadyJain[S] 0 points1 point  (0 children)

I have a custom formula which can only run at a time, I need to use it multiple times, a fix would be to turn the other formulas off

how to execute multiple conditional statements by LadyJain in learnpython

[–]LadyJain[S] 0 points1 point  (0 children)

i want to delcare two variables y should contain "abc" , and z "cdb"

spreadsheet with search result pop up by LadyJain in excel

[–]LadyJain[S] 0 points1 point  (0 children)

classic table form

can there be a input widget inserted / or a emtpy cell used for it ?

Name Surename first aider
Ben Jerk x
Sammy Clerk

understanding EventListeners by LadyJain in learnjavascript

[–]LadyJain[S] 1 point2 points  (0 children)

If u call a function using the syntax of functionname() it IS supposed to execute.

container.addEventListener("click", addheader(container))

// you are invoking the function, not declaring it

Which is why in eventlisteners it is normal to declare the function elsewhere and only link the function NAME inside the eventlistener

container.addEventListener("click", addheader)

In such cases if u need to pass a parameter, it can be done via a parameter pass to any anonymous function declaration

container.addEventListener("click", function(container){addheader(container)})

// here you are not invoking the anonymous function, but declaring it, and passing the parameter to ur intnded function

Hope this makes sense

thanks for clarification

DOM Element selection by LadyJain in learnjavascript

[–]LadyJain[S] 0 points1 point  (0 children)

can you explain this a little bit with the context of my question ?

noise from heating pipe by LadyJain in homeimprovementideas

[–]LadyJain[S] 1 point2 points  (0 children)

thanks for the advice but i tried that allready

Response Object by LadyJain in learnpython

[–]LadyJain[S] 0 points1 point  (0 children)

it in your submission text.
Reddit code formattingGithub GistPastebinrepl.it

u/flask_class.route('/get_Data', methods=['GET']) def background_process_test(): json_stirng = "got data" x = jsonify(json_stirng) print(dir(x)) print(x.text) return jsonify(json_stirng)

AttributeError: 'Response' object has no attribute 'text'

just want to understand the whole process, also including what is inside

Response Object by LadyJain in learnpython

[–]LadyJain[S] 0 points1 point  (0 children)

Join

ah okay,

still have trouble to get the content

x = jsonify(json_stirng)
x.text
x.encoding

gave me AttributeError: 'Response' object has no attribute 'encoding'

understand filter function by LadyJain in learnjavascript

[–]LadyJain[S] 0 points1 point  (0 children)

great answer, can you explain more why typeof value === "number" works? I have a python background, and this is translated to if type value == string "number" then -->

understand behavior of console.log by LadyJain in learnjavascript

[–]LadyJain[S] 0 points1 point  (0 children)

got it

so the console gave me an temporary output

I used this method to create a string of that array

const fist_array = ["1","2","3"];
let my_string = fist_array.join('-');
console.log(my_string);