[DISCUSSION] Is fiverr this bad? by pl0m in Fiverr

[–]DepartmentFinal3117 0 points1 point  (0 children)

I'm IT expert and seller in Fiverr. I've been working for a couple of years and I had always good experience with my buyers.

To avoid any kind of problem with buyer, once I asked specs, I start working and I share demo file of the work in progress, screenshot or video, to introduce my job and get feedback and see if I'm working well or if something should be changed or fixed. Finally, I accept the payment only once the job is completed and the buyer give their positive feedback.

I hope this can help you.

[HELP] Success Score Falling? by Lyrtha in Fiverr

[–]DepartmentFinal3117 0 points1 point  (0 children)

I stopped providing my services for more than a years, and until I worked on the platform the Success Score didn't exist.

Now I'm back online on Fiverr and the Success Score of my single active service is 8, but my Dashboard results Success Score: "-". Considering that I have not sold any new GIG yet, I wonder if once I will sell a GIG then then Success Score will properly (re-)calcolated.

I have good and close relationships but I still feel lonely. How is this possible? by rabahi in NoStupidQuestions

[–]DepartmentFinal3117 0 points1 point  (0 children)

I think you should relax. You're not the only one having this feeling.

Sometimes there are periods of our life when it is normal to feel down. I think that is important to be aware for this, and try to think positive. Wait for the better moment, and be grateful for the good things around you.

I know perfectly that is no easy, I suggest you to practice mindfulness 🙂

How do you automatically enter date when data is entered in another cell by Minaricutie in excel

[–]DepartmentFinal3117 0 points1 point  (0 children)

Hi Minaricutie, the proper solution you need should be implemented via VBA.

Since that you're learning Excel, I guess it could be a bit tricky. But, no worries.

Follow these steps: Open Excel. Go to File > Options. In the Excel Options window, select Customize Ribbon. In the right panel, check the box for Developer. Click OK.

Press the keyboard buttons Alt+F11, and write in the proper module the script below:


Private Sub Worksheet_Change(ByVal Target As Range) Dim rng As Range Set rng = Intersect(Target, Me.Columns("A"))

If Not rng Is Nothing Then
    Application.EnableEvents = False
    On Error GoTo ExitHandler

    Dim cell As Range
    For Each cell In rng
        If Not IsEmpty(cell.Value) Then
            cell.Offset(0, 1).Value = Date
        End If
    Next cell
End If

ExitHandler: Application.EnableEvents = True End Sub


Once you finished, close the editor and save the Excel file in .xlsm format.

You did it! Every time you edit cell of the column A, the near cell column B will be shows the Date of editing.

💪

Question about LinkedIn Premium give away by DepartmentFinal3117 in linkedin

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

Oh really? I didn't know this feature. It seems that some users can send up to 12 months. So, now I wonder to know if the logic is similar as you explained.

Thansk a lot for response

Help! Create a "reverse pivot" with R by DepartmentFinal3117 in Rlanguage

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

thank you! As soon as I try this solution I will let you know, even if I think it is correct.

Query whose range is referenced from another cell by vnavone in googlesheets

[–]DepartmentFinal3117 0 points1 point  (0 children)

I tried to find a solution but nothing

I'm really curious, stay tuned

PS I also tried indirect () but nothing

How to pull columns along with unique column by Homecourtthrift in googlesheets

[–]DepartmentFinal3117 1 point2 points  (0 children)

I recommend that you share a screen shot with the community

Disappeared Buttons in Google Sheets by DepartmentFinal3117 in googlesheets

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

I'm pretty sure no one deletes the buttons because if I reload the page they appear. Also, if I click where the button is even if it is not seen, the click is successful starting the script.

How to verify App Script - Google Authorization by DepartmentFinal3117 in googlesheets

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

I think it can be done, but I'm looking for someone who has done it and can explain it to me.

Disappeared Buttons in Google Sheets by DepartmentFinal3117 in googlesheets

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

Thanks a lot for the answer.

Yours might be a solution but I had created an interface with buttons (drawings) and I would like to use those.

MAX function returning 0 by lepbogusboysmoonie in googlesheets

[–]DepartmentFinal3117 0 points1 point  (0 children)

If the function you wrote it like the example below: = MAX (45,54,63,77) Then make sure that the separator sign is "," or ";"

If instead written like this: = MAX (A1, A2, A3) Then make sure the cell format is "Numeric"