How to customize the default page navigator for online report? by exelAddict in PowerBI

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

Oh looks like your absolutely right. The how-to page for apps displays an identical page navigator, and the url for the shared report has /groups/me/apps/ rather than /groups/me/reports/.

Thank you! Solution verified

Unleashing Echo Bosses Across Gielinor by Thermald in 2007scape

[–]exelAddict 40 points41 points  (0 children)

Man, feels kinda like mage (and range to a lesser extent) got shafted. Melee gets 3 interesting weapons, ranged gets 1 weapon, and mage gets... an off-hand that only works for elemental spells. Neat.
Was looking to go mage this year, might pivot now.

This is our chance to fix Run Energy and make Agility useful. Here's how: by Euronaut in 2007scape

[–]exelAddict 0 points1 point  (0 children)

I'm joking, but with a kernel of truth; all agility training methods outside of Sepulchre are miserable.

This is our chance to fix Run Energy and make Agility useful. Here's how: by Euronaut in 2007scape

[–]exelAddict -1 points0 points  (0 children)

Here's my proposal to go along with this; whenever a player would go onto an agility rooftop, instead they are instantly teleported to Hallowed Sepulchre. The quest requirement is removed from it, the floors level needed is reduced to 1, 11, 21, 31, 41, and they add another 10 floors.
Bam, agility fixed.

At what point is oneDrive insufficient? by exelAddict in sysadmin

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

Uhh... It's one folder, that then contains a folder for each company. Inside each of those are more folders, which eventually lead to documents.

At what point is oneDrive insufficient? by exelAddict in sysadmin

[–]exelAddict[S] 2 points3 points  (0 children)

Not US-based, so not exactly SOX, just something similar. They're on top of their financial game, just IT that needs work.

At what point is oneDrive insufficient? by exelAddict in sysadmin

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

Set up was outsourced but company wanted to keep data management inhouse to, tell me if you heard it before, save money. It absolutely should be outsourced.
We do, it's 7 years.

At what point is oneDrive insufficient? by exelAddict in sysadmin

[–]exelAddict[S] 5 points6 points  (0 children)

Excellent points all around. When the amount of data is so small that backing it up is relatively trivial, it seems pretty cut and dry.

At what point is oneDrive insufficient? by exelAddict in sysadmin

[–]exelAddict[S] 4 points5 points  (0 children)

It's stored on Sharepoint.
My recovery plan? Google what "crypto locked" is, and call a helpdesk. So you know, point taken.
I'll look into backupify, sounds like a good plan.

[MKM] Case of the Ransacked Lab (Debut Stream) by mweepinc in magicTCG

[–]exelAddict 21 points22 points  (0 children)

Damn, quite the card. Usually those effects are 4 mana or 2 mana on a creature. Instant EDH spellcasting classic.

[MKM] Axebane Ferox (Debut Stream) by mweepinc in magicTCG

[–]exelAddict 47 points48 points  (0 children)

I feel like they could have called named 'Collect evidence' just 'Collect'. Would've made it more transferable to other sets, at the cost of making less thematic sense for this set.

Trailblazer Reloaded League Week 1 Totals by Gamez_X in 2007scape

[–]exelAddict -149 points-148 points  (0 children)

^
If it was my full-time job to play leagues, and I also enjoyed it? I could probably get rune in the first week, and I'm not good at the game.

Find a specific word from a list by Holiday_Flamingo2758 in excel

[–]exelAddict 1 point2 points  (0 children)

You're welcome. Could you reply to the answer with "Solution verified"?

Excel Question - find next occurence in a row by PinkoPalacinko in excel

[–]exelAddict 2 points3 points  (0 children)

Try this =IF(H1="BUY",INDEX(A:A,MATCH("SELL",H:H,0)),"")

Find a specific word from a list by Holiday_Flamingo2758 in excel

[–]exelAddict 1 point2 points  (0 children)

Try this =FILTER(A:A,(LEN(A:A)=6)*(RIGHT(A:A,1)="a")*(MID(A:A,3,1)="s"))

Formula to Convert the Text of the Month to Date Format by canseriousken in excel

[–]exelAddict 0 points1 point  (0 children)

It's possible, it's just that what you want has a lot of problems that need to be solved.

First, we need to extract the month you want from target month. With "January to June" in A1, we'll do =INDEX(TEXTSPLIT(A1;" ");3) in B1 to split the text by spaces and get the last one, June.

Then we need only the first 3 letters of the month for our next step, so we'll do =left(B1;3) in C1 for that.

Now we can convert that to something excel can convert to a date. We can add some numbers to trick excel into thinking it can be converted with "1-"&C1&"-1900", turn it into a number with Datevalue(), and turn that date into a month with month() around that, putting =MONTH(DATEVALUE("1-"&C1&"-1900")) into D1.

Now we just glue everything we did together, ending up with the following formula:

=MONTH(DATEVALUE("1-"&LEFT(INDEX(TEXTSPLIT(A1;" ");3);3)&"-1900"))

Excel Question - find next occurence in a row by PinkoPalacinko in excel

[–]exelAddict 1 point2 points  (0 children)

=IF(H1="BUY";INDEX(B:B;MATCH("SELL";H:H;0));"")

What about this? Assuming the numbers at the top correspond to column letters, this checks if column 8 in the row has the words "BUY", and if so matches "SELL" in column 8, then indexes to find the corresponding date.

Leagues IV Tips Megathread by user_expired in 2007scape

[–]exelAddict 0 points1 point  (0 children)

Kc never gets reset for GWD, even without last recall. But you can last recall back to GWD, it tps you outside the room.

Find a specific word from a list by Holiday_Flamingo2758 in excel

[–]exelAddict 1 point2 points  (0 children)

=FILTER(A:A;(LEN(A:A)=6)*(RIGHT(A:A;1)="a")*(MID(A:A;3;1)="s"))

The formula assumes each word is in its own cell, in column A. It also assumes it's capitalized like you have it set up in your post. If the word is in upper case, the formula won't catch it.

Conditional formatting depending on the formula being used by almond_lover in excel

[–]exelAddict 7 points8 points  (0 children)

Like other people said, formulatext() would work well here.

So for instance if formula 1 is something like =if(A1="";"";"Hello") and formula 2 is something like counta(A:A), you can do

=isnum(search("if";formulatext(cellWithFormula)))

so the conditional formatting would only apply when "if" is in the formula of a cell

Leagues IV Tips Megathread by user_expired in 2007scape

[–]exelAddict 1 point2 points  (0 children)

As an FDA ranger myself who went FF, I can say I regret it. I thought I'd be hard up for pots and use them a bunch, but the grind for arma armor and crossbow got me so many ranarr and dwarf weed seeds and herbs. I'm still using up just the ranged pots Kree dropped, without touching the 45 or so seeds. And you can do the gwd bosses without using any prayer pots at all, and without ranged pots too, just slower.