JIYIK CN >

Current Location:Home > Learning > PROGRAM >

All

Calling a Sub in VBA

Publish Date:2025/04/16 Author:JIYIK Category:Vba

We will show you how to call a sub within another sub through examples in VBA. Calling a Sub in VBA When dealing with multiple subroutines, we may encounter situations where we need to call multiple subroutines for the same function. Some f...

Full

Sum function in VBA

Publish Date:2025/04/16 Author:JIYIK Category:Vba

We will show you how to use sum in VBA. Sum function in VBA Sum is the most commonly used function in excel. This function is very useful as we can use sum to get the total from the financial table. We will learn how to use the sum function...

Full

Adding a new row in VBA

Publish Date:2025/04/16 Author:JIYIK Category:Vba

We will show you how to continue the code on the next line in VBA by example. We will also show you how to go to the next line in a message box using different methods in VBA. Adding a new row in VBA There are two different situations in pr...

Full

Rounding in VBA

Publish Date:2025/04/16 Author:JIYIK Category:Vba

Round() We will introduce the and functions in VBA through examples RoundUp() . Round() Using the or RoundUp() function in VBA When working with Excel worksheets containing numbers and calculations, we get results that are fractions. Someti...

Full

Remove duplicates in VBA

Publish Date:2025/04/16 Author:JIYIK Category:Vba

We will explain how to remove duplicates in VBA by example. Remove duplicates in VBA When working with an Excel worksheet that contains a lot of data, it is likely that this data contains some duplicates. Any duplicates must be removed to a...

Full

Convert JSON to struct in Go

Publish Date:2025/04/15 Author:JIYIK Category:Go

This article describes how to convert JSON to struct in GoLang . Convert JSON to Struct using Unmarshal method in Go The encoding/json package of the Go language provides a function Unmarshal to convert JSON data into byte format. This func...

Full

Getting a string representation of a structure in Go

Publish Date:2025/04/15 Author:JIYIK Category:Go

Go allows us to serialize data from structures using a variety of simple standard methods. Converting a structure to a string using String method in Go The GoLang package String helps implement simple functions to manipulate and edit UTF-8...

Full

GoLang sorting structure slices

Publish Date:2025/04/15 Author:JIYIK Category:Go

This article describes how to sort structure slices in Go. GoLang sorting structure slices GoLang provides two methods to sort a struct slice; one is sort.Slice and the other is sort.SliceStable . We also need to use the less function with...

Full

Golang copy slice

Publish Date:2025/04/15 Author:JIYIK Category:Go

This article introduces how to copy slices in Go language. Copying a Slice in GoLang Copying a slice in Go can be achieved by different methods. The copy() and append() methods are commonly used for this purpose, where copy() takes a deep c...

Full

GoLang elements are maps of maps

Publish Date:2025/04/15 Author:JIYIK Category:Go

This article introduces how to create a Map of Maps in Go language. GoLang Map of Map Maps of Maps or nested maps are those maps whose key-value pairs are also maps. In Go language, you can create Maps of Maps. When we define a Map, we have...

Full

Merge two maps in Golang

Publish Date:2025/04/15 Author:JIYIK Category:Go

This article describes how to merge two maps in Golang. Golang does not provide any in-built functionality to merge mappings, but this can be achieved using Copy method or by following the corresponding procedure. Let’s try both the metho...

Full

Declaring constant Map in Go

Publish Date:2025/04/15 Author:JIYIK Category:Go

Map is a collection of key-value pairs which can be sorted in any order. It assigns values ​​to keys. The keys in a Map are always unique, but the values ​​are not always unique. The map data structure is used for fast key-based dat...

Full

How to read a file into a string in GoLang

Publish Date:2025/04/15 Author:JIYIK Category:Go

The Go language provides a lot of file manipulation tools, one of which is how to read files into strings. ioutil.ReadFile() , File.Read() , buf.ReadFrom() and strings.Builder are just a few of the methods that can be used to efficiently wr...

Full

Convert JSON object to a class in TypeScript

Publish Date:2025/04/15 Author:JIYIK Category:TypeScript

Data on the internet flows in the form of strings, which can be converted into a very popular format called JSON. The JSON representation of this data usually represents an object or even a class in TypeScript. TypeScript provides the abili...

Full

Handling exceptions with try..catch..finally in TypeScript

Publish Date:2025/04/15 Author:JIYIK Category:TypeScript

This article will discuss try..catch..finally handling exceptions in TypeScript using the statement. Handling exceptions in TypeScript In TypeScript, try..catch..finally a block handles exceptions that occur during program runtime. It allow...

Full

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Hottest

Tags

Scan the Code
Easier Access Tutorial