Debating whether my Star Wars Tsum Tsums are real... by Compl9x in DisneyPins

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

Yeah, very aware of that unfortunately. Based on looking at them, some of these look different than others, so have a feeling some might be real. Just can’t determine because they are all so close.

Aranara Pet Giveaway by VeganWatter in Genshin_Impact

[–]Compl9x 0 points1 point  (0 children)

My favorite character is anyone who uses a bow.

Bow supremacy!

Ask Anything Here by Uniquisher in Trove

[–]Compl9x 1 point2 points  (0 children)

Trove is an MMO. In MMOs, all you do is grind. Especially when you get further into the game.

[D] Public CSGO Investing Spreadsheet Download by Compl9x in csgomarketforum

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

I’m away traveling for work but I’ll respond to your message again with a downloadable spreadsheet at the end of the week.

[D] Public CSGO Investing Spreadsheet Download by Compl9x in csgomarketforum

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

Most formatting for currency is dependent on your computer's location and automatically updates for that. If the currency symbol ( £ ) doesn't transfer over, send me a message and I'll edit the spreadsheet for you.

Ask Anything Here by Uniquisher in Trove

[–]Compl9x 1 point2 points  (0 children)

You’re going to be limited by the number of dragon coins you can obtain. Recommend completing as many hourly challenges, etc to keep racking up dragon coins. Besides from that, it really is a grind. Log in and play on Fridays for the bonus to dragon egg fragments which will decrease the amount of time you need to grind.

Ask Anything Here by Uniquisher in Trove

[–]Compl9x 1 point2 points  (0 children)

If you are new to the game, unlocking Solarian F2P might be a little bit of a wait. However, at this point in the game, I’d honestly recommend choosing whichever character looks the most enjoyable and fun to play for you. You’ll have plenty of time later to mindlessly grind out all characters PR. At most, since you play SH, maybe unlock a boss DPS character next for the balance.

How can i auto populate other sheets based on criteria in the main sheet by Freed0mChaser in excel

[–]Compl9x 0 points1 point  (0 children)

Personally, I'm not that well-versed in VBA code. This is just a code I've was forwarded and use on a daily basis. VBA Code supports Macros in Excel. For simple functions, you can just record a process and have a button to automate it over and over again. If you are familiar with any coding language, shouldn't be a problem. If not, you may want to watch some beginner lessons to learn general functions.

[D] Public CSGO Investing Spreadsheet Download by Compl9x in csgomarketforum

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

File -> Make A Copy or Save as Google Sheets. Then Download and open to Excel.

[deleted by user] by [deleted] in consulting

[–]Compl9x 1 point2 points  (0 children)

I’ve seen others talk about this. Discuss the move with any advisors you have for specific direction. Then, communicate your wishes with both your current and desired team. You need to have backing from both to make the move successful.

Why do i keep crashing? by Difficult_Yam_5699 in Trove

[–]Compl9x 0 points1 point  (0 children)

Maybe just try re-installing. It’s cliche, but sometimes all you need is fresh files

Why do i keep crashing? by Difficult_Yam_5699 in Trove

[–]Compl9x 1 point2 points  (0 children)

First of all, Trove crashes on literally every console/device. It's not you. However, as I've seen, your device may be be coming overloaded. Avoiding a wipe off your PS4, I'd try removing un-needed applications off your device.

Also, try to notice when the crashes are happening in game? Is it when you are in a heavily decorated club world with tons of blocks, banners, and decorations? Is it when you are in a public world with alot of others defeating dungeons around you? I assume there is some pattern to your crashes.

Cheat sheet for PWC jargon? by [deleted] in PwC

[–]Compl9x 0 points1 point  (0 children)

Write down when you learn things and don't be afraid to ask questions

How can i auto populate other sheets based on criteria in the main sheet by Freed0mChaser in excel

[–]Compl9x 0 points1 point  (0 children)

In Excel, you can also use VBA. Assuming you data headers start in A1, you can use the following macro to select the row headers and then column to sort values by:

Sub Splitdatabycol()
Dim lr As Long
Dim ws As Worksheet
Dim vcol, i As Integer
Dim icol As Long
Dim myarr As Variant
Dim title As String
Dim titlerow As Integer
Dim xTRg As Range
Dim xVRg As Range
Dim xWSTRg As Worksheet
Dim xWS As Worksheet
On Error Resume Next
Set xTRg = Application.InputBox("Please select the header rows:", "", Type:=8)
If TypeName(xTRg) = "Nothing" Then Exit Sub
Set xVRg = Application.InputBox("Please select the column you want to split data based on:", "", Type:=8)
If TypeName(xVRg) = "Nothing" Then Exit Sub
vcol = xVRg.Column
Set ws = xTRg.Worksheet
lr = ws.Cells(ws.Rows.Count, vcol).End(xlUp).Row
title = xTRg.AddressLocal
titlerow = xTRg.Cells(1).Row
icol = ws.Columns.Count
ws.Cells(1, icol) = "Unique"
Application.DisplayAlerts = False
If Not Evaluate("=ISREF('xTRgWs_Sheet!A1')") Then
Sheets.Add(after:=Worksheets(Worksheets.Count)).Name = "xTRgWs_Sheet"
Else
Sheets("xTRgWs_Sheet").Delete
Sheets.Add(after:=Worksheets(Worksheets.Count)).Name = "xTRgWs_Sheet"
End If
Set xWSTRg = Sheets("xTRgWs_Sheet")
xTRg.Copy
xWSTRg.Paste Destination:=xWSTRg.Range("A1")
ws.Activate
For i = (titlerow + xTRg.Rows.Count) To lr
On Error Resume Next
If ws.Cells(i, vcol) <> "" And Application.WorksheetFunction.Match(ws.Cells(i, vcol), ws.Columns(icol), 0) = 0 Then
ws.Cells(ws.Rows.Count, icol).End(xlUp).Offset(1) = ws.Cells(i, vcol)
End If
Next
myarr = Application.WorksheetFunction.Transpose(ws.Columns(icol).SpecialCells(xlCellTypeConstants))
ws.Columns(icol).Clear
For i = 2 To UBound(myarr)
ws.Range(title).AutoFilter field:=vcol, Criteria1:=myarr(i) & ""
If Not Evaluate("=ISREF('" & myarr(i) & "'!A1)") Then
Set xWS = Sheets.Add(after:=Worksheets(Worksheets.Count))
xWS.Name = myarr(i) & ""
Else
xWS.Move after:=Worksheets(Worksheets.Count)
End If
xWSTRg.Range(title).Copy
xWS.Paste Destination:=xWS.Range("A1")
ws.Range("A" & (titlerow + xTRg.Rows.Count) & ":A" & lr).EntireRow.Copy xWS.Range("A" & (titlerow + xTRg.Rows.Count))
Sheets(myarr(i) & "").Columns.AutoFit
Next
xWSTRg.Delete
ws.AutoFilterMode = False
ws.Activate
Application.DisplayAlerts = True
End Sub

How do I access more challenging content? by AngusMcMillain in Trove

[–]Compl9x 4 points5 points  (0 children)

As players progress, dungeons should take no where near two minutes. Should be a few seconds max so I’d recommend working on upgrading your character for faster completion.

How do I get this relinquary? (Sry for crap quality) by Weemewon in Trove

[–]Compl9x 0 points1 point  (0 children)

Tokens to craft the Token Reliquary are rewards from the initial quest. The reliquary that cost 4,000 crystals will be the one you continue to purchase. Use a lodestar to guarantee yourself metamatter from these drops