Skip to main content
deleted 1 character in body
Source Link
TobyU
  • 4k
  • 2
  • 24
  • 33

,You're You're not doing it totally wrong.

Have a look at this example:

function get-field ($field, $heading) { return "$field - $heading" } $address = get-field "AddressFiled" "AddressHeading" $address 

to catch the returned value in a variable for further use, you should call the function like in the above example.

,You're not doing it totally wrong.

Have a look at this example:

function get-field ($field, $heading) { return "$field - $heading" } $address = get-field "AddressFiled" "AddressHeading" $address 

to catch the returned value in a variable for further use, you should call the function like in the above example.

You're not doing it totally wrong.

Have a look at this example:

function get-field ($field, $heading) { return "$field - $heading" } $address = get-field "AddressFiled" "AddressHeading" $address 

to catch the returned value in a variable for further use, you should call the function like in the above example.

Source Link
TobyU
  • 4k
  • 2
  • 24
  • 33

,You're not doing it totally wrong.

Have a look at this example:

function get-field ($field, $heading) { return "$field - $heading" } $address = get-field "AddressFiled" "AddressHeading" $address 

to catch the returned value in a variable for further use, you should call the function like in the above example.