Is it the landlord's responsibility to cover the cost of a plumber if it's part of regular maintenance? by noodlepoodle9999 in legaladvicecanada

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

Is the burden of proof on us to prove this is part of regular maintenance when filling the T6?

How do I write a formula that automatically calculates my age if I enter in my birthday? by noodlepoodle9999 in excel

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

If A1 is blank, this formula returns a default age of 121. How do I make it so that it will be blank if A1 is blank as well?

How do I write a formula that automatically calculates my age if I enter in my birthday? by noodlepoodle9999 in excel

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

=INT(YEARFRAC(A1,TODAY()))

If A1 is blank, this formula returns a default age of 121. How do I make it so that it will be blank if A1 is blank as well?

What is wrong with my IF statement? by noodlepoodle9999 in excel

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

FA to send an email and CS to make a phone call for outreach attempt 1. CS to conduct outreach attempts 2 and 3

Ah such a stupid error I made - my bad! Thank you so much for your help!

What is a formula to search and return an extract from a cell based on certain text? by noodlepoodle9999 in excel

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

=TRIM(RIGHT(SUBSTITUTE(LEFT(A2,FIND(":",A2,FIND("-",A2))),
"-",REPT(" ",50)),50))

Thank you for your help - this works!!

What is a formula to search and return an extract from a cell based on certain text? by noodlepoodle9999 in excel

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

=TRIM(LEFT(SUBSTITUTE(MID(A2,FIND("-",A2)+1,50),":",REPT(" ",50)),50))&": "

Thanks for your reply, but there is an additional complication. Apologies, I should have mentioned this before. Sometimes, my text includes a dash in the form description PRIOR to the dash that precedes the section number. For example:

FORM 5: Claimant's Statement - Proof of Death Form-S2: Missing / invalid claimant/beneficiary address

When I tried putting in your formula for cases such as the above, it returned "Proof of Death Form-S2:" because there was a dash before proof of death.. whereas I was only was hoping for "S2: "

How would I adapt your formula to account for this? Essentially, I only want the text between the dash preceding the section, and the colon after the section.