Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: Jun 9, 2026
Topics: 0 / Replies: 841
Reply
RE: Alerting on decreasing values over multiple dates

If your data doesn't have missing date/station combinations, and is sorted as in your sample, then I think something like this would work: =IF($J2="...

6 days ago
Reply
RE: Hyperlink does not update when using find/replace to change dates within URL

You could also use some code like this to do the replacements: Sub replaceHlinks() Dim oldDate As String oldDate = InputBox("Enter old dat...

1 month ago
Reply
RE: DATE / TIME / INT / MOD / NESTED IF FORMULA: SIMPLER “1 CELL” EXPRESSION?

Not really. You're doing the same work twice there by converting to hours and then dividing by 24, which gets you back to decimal days. All you need i...

9 months ago
Reply
RE: OneDrive Personal - Embed path not working

Ah. You might want to have a look at Lz's article here about using the API:

1 year ago
Forum
Reply
RE: OneDrive Personal - Embed path not working

If you open it in desktop Excel from OneDrive, under the File - Info section, you should see a Copy Link button at the top. Click that, then you need ...

1 year ago
Forum
Reply
Reply
RE: Modify VBA code when Blanks for folders

I don't really know why you have a table with blank rows in it, but you can use: For i = 4 To sh.Range("A" & Application.Rows.Count).End(xlU...

1 year ago
Forum
Reply
RE: VBA Error with Xlookup

You can't refer to table ranges like that. You need to use something like: FindName = WorksheetFunction.XLookup(FullName, Application.Range("tblPhon...

1 year ago
Forum
Reply
RE: Calculated column with circular dependency errors

If you need to do it as a calculated column, you will need to figure out how to remove some of the filters to get rid of the circular dependency - e.g...

1 year ago
Forum
Reply
RE: DAX help - Running Total and filters

You could add a couple of calculated columns: LatestLimit: =if(MyTable[LatestTransaction]="Yes",MyTable[Limit],BLANK()) LatestLimitBand: =LOOKUP...

1 year ago
Forum
Reply
RE: Make "if" statement dynamic

That would also work as you can then just merge that column in too, and check it in the next step.

1 year ago
Forum
Reply
RE: Make "if" statement dynamic

I'd just add that as a separate step afterwards since it only applies to Manual.

1 year ago
Forum
Reply
RE: Make "if" statement dynamic

A simple merge query would be an easy solution.

1 year ago
Forum
Reply
RE: Measure total 'problem'

I don't believe you can create one measure for that. The totals row has no context of what row fields are involved in the rest of the pivot table.

1 year ago
Forum
Page 1 / 57
0